diff options
author | Sébastien Marie <semarie@online.fr> | 2018-07-14 06:44:16 +0200 |
---|---|---|
committer | Sébastien Marie <semarie@online.fr> | 2018-07-14 06:44:16 +0200 |
commit | 14f6cf8c6ac59a3a084e0cc71f9dbf3479d0da9f (patch) | |
tree | 13e7490ee8f3dc6c61e88829343743575c15fcd0 /src | |
parent | c70efd87cd7d6a5203dbbf3c6d7b3cfe9f0a261c (diff) | |
download | rust-libc-14f6cf8c6ac59a3a084e0cc71f9dbf3479d0da9f.tar.gz |
add KERN_AUDIO and inc KERN_MAXID on OpenBSD
Diffstat (limited to 'src')
-rw-r--r-- | src/unix/bsd/netbsdlike/openbsdlike/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unix/bsd/netbsdlike/openbsdlike/mod.rs b/src/unix/bsd/netbsdlike/openbsdlike/mod.rs index e44bfca61c..d49c94e74c 100644 --- a/src/unix/bsd/netbsdlike/openbsdlike/mod.rs +++ b/src/unix/bsd/netbsdlike/openbsdlike/mod.rs @@ -653,7 +653,8 @@ pub const KERN_PROC_VMMAP: ::c_int = 80; pub const KERN_GLOBAL_PTRACE: ::c_int = 81; pub const KERN_CONSBUFSIZE: ::c_int = 82; pub const KERN_CONSBUF: ::c_int = 83; -pub const KERN_MAXID: ::c_int = 84; +pub const KERN_AUDIO: ::c_int = 84; +pub const KERN_MAXID: ::c_int = 85; pub const KERN_PROC_ALL: ::c_int = 0; pub const KERN_PROC_PID: ::c_int = 1; pub const KERN_PROC_PGRP: ::c_int = 2; |