File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
bsd/freebsdlike/dragonfly Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1002,6 +1002,10 @@ pub const SF_NOHISTORY: ::c_ulong = 0x00400000;
1002
1002
pub const SF_CACHE : :: c_ulong = 0x00800000 ;
1003
1003
pub const SF_XLINK : :: c_ulong = 0x01000000 ;
1004
1004
1005
+ // timespec constants
1006
+ pub const UTIME_OMIT : c_long = -2 ;
1007
+ pub const UTIME_NOW : c_long = -1 ;
1008
+
1005
1009
fn _CMSG_ALIGN ( n : usize ) -> usize {
1006
1010
( n + 3 ) & !3
1007
1011
}
Original file line number Diff line number Diff line change @@ -370,6 +370,9 @@ pub const RLIMIT_MSGQUEUE: ::c_int = 12;
370
370
pub const RLIMIT_NICE : :: c_int = 13 ;
371
371
pub const RLIMIT_RTPRIO : :: c_int = 14 ;
372
372
373
+ pub const UTIME_OMIT : c_long = 1073741822 ;
374
+ pub const UTIME_NOW : c_long = 1073741823 ;
375
+
373
376
extern {
374
377
pub fn sendmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
375
378
flags : :: c_uint ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments