We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cd8f0 commit 5dc92a1Copy full SHA for 5dc92a1
libc-test/semver/dragonfly.txt
@@ -145,6 +145,7 @@ CODESET
145
CPU_CLR
146
CPU_ISSET
147
CPU_SET
148
+CPU_SETSIZE
149
CPU_ZERO
150
CPUCTL_RSMSR
151
CPUCTL_WRMSR
src/unix/bsd/freebsdlike/dragonfly/mod.rs
@@ -1066,6 +1066,8 @@ pub const CPUCTL_MSRSBIT: ::c_int = 0xc0106305;
1066
pub const CPUCTL_MSRCBIT: ::c_int = 0xc0106306;
1067
pub const CPUCTL_CPUID_COUNT: ::c_int = 0xc0106307;
1068
1069
+pub const CPU_SETSIZE: ::size_t = ::mem::size_of::<::cpumask_t>() * 8;
1070
+
1071
pub const EVFILT_READ: i16 = -1;
1072
pub const EVFILT_WRITE: i16 = -2;
1073
pub const EVFILT_AIO: i16 = -3;
0 commit comments