Type CTL [src]
Members
- DDB (Constant)
- DEBUG (Constant)
- DEBUG (Constant)
- DEBUG (Constant)
- DEBUG (Constant)
- FS (Constant)
- HW (Constant)
- HW (Constant)
- KERN (Constant)
- KERN (Constant)
- KERN (Constant)
- KERN (Constant)
- LWKT (Constant)
- MACHDEP (Constant)
- MACHDEP (Constant)
- MAXID (Constant)
- MAXNAME (Constant)
- NET (Constant)
- NET (Constant)
- UNSPEC (Constant)
- UNSPEC (Constant)
- USER (Constant)
- VFS (Constant)
- VFS (Constant)
- VM (Constant)
- VM (Constant)
Source
pub const CTL = switch (native_os) {
.freebsd => struct {
pub const KERN = 1;
pub const DEBUG = 5;
},
.netbsd => struct {
pub const KERN = 1;
pub const DEBUG = 5;
},
.dragonfly => struct {
pub const UNSPEC = 0;
pub const KERN = 1;
pub const VM = 2;
pub const VFS = 3;
pub const NET = 4;
pub const DEBUG = 5;
pub const HW = 6;
pub const MACHDEP = 7;
pub const USER = 8;
pub const LWKT = 10;
pub const MAXID = 11;
pub const MAXNAME = 12;
},
.openbsd => struct {
pub const UNSPEC = 0;
pub const KERN = 1;
pub const VM = 2;
pub const FS = 3;
pub const NET = 4;
pub const DEBUG = 5;
pub const HW = 6;
pub const MACHDEP = 7;
pub const DDB = 9;
pub const VFS = 10;
},
else => void,
}