summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Marie <semarie@online.fr>2018-07-14 06:44:16 +0200
committerSébastien Marie <semarie@online.fr>2018-07-14 06:44:16 +0200
commit14f6cf8c6ac59a3a084e0cc71f9dbf3479d0da9f (patch)
tree13e7490ee8f3dc6c61e88829343743575c15fcd0
parentc70efd87cd7d6a5203dbbf3c6d7b3cfe9f0a261c (diff)
downloadrust-libc-14f6cf8c6ac59a3a084e0cc71f9dbf3479d0da9f.tar.gz
add KERN_AUDIO and inc KERN_MAXID on OpenBSD
-rw-r--r--src/unix/bsd/netbsdlike/openbsdlike/mod.rs3
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;