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;
10021002pub const SF_CACHE : :: c_ulong = 0x00800000 ;
10031003pub const SF_XLINK : :: c_ulong = 0x01000000 ;
10041004
1005+ // timespec constants
1006+ pub const UTIME_OMIT : c_long = -2 ;
1007+ pub const UTIME_NOW : c_long = -1 ;
1008+
10051009fn _CMSG_ALIGN ( n : usize ) -> usize {
10061010 ( n + 3 ) & !3
10071011}
Original file line number Diff line number Diff line change @@ -370,6 +370,9 @@ pub const RLIMIT_MSGQUEUE: ::c_int = 12;
370370pub const RLIMIT_NICE : :: c_int = 13 ;
371371pub const RLIMIT_RTPRIO : :: c_int = 14 ;
372372
373+ pub const UTIME_OMIT : c_long = 1073741822 ;
374+ pub const UTIME_NOW : c_long = 1073741823 ;
375+
373376extern {
374377 pub fn sendmmsg ( sockfd : :: c_int , msgvec : * mut :: mmsghdr , vlen : :: c_uint ,
375378 flags : :: c_uint ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments