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.
2 parents 7ada017 + 7d65de6 commit f5fa416Copy full SHA for f5fa416
src/unix/bsd/freebsdlike/mod.rs
@@ -1017,6 +1017,8 @@ pub const SF_IMMUTABLE: ::c_ulong = 0x00020000;
1017
pub const SF_APPEND: ::c_ulong = 0x00040000;
1018
pub const SF_NOUNLINK: ::c_ulong = 0x00100000;
1019
1020
+pub const TIMER_ABSTIME: ::c_int = 1;
1021
+
1022
f! {
1023
pub fn WIFCONTINUED(status: ::c_int) -> bool {
1024
status == 0x13
src/unix/bsd/netbsdlike/mod.rs
@@ -589,6 +589,8 @@ pub const SF_ARCHIVED: ::c_ulong = 0x00010000;
589
pub const SF_IMMUTABLE: ::c_ulong = 0x00020000;
590
591
592
593
594
595
pub fn WSTOPSIG(status: ::c_int) -> ::c_int {
596
status >> 8
0 commit comments