File tree Expand file tree Collapse file tree 6 files changed +18
-0
lines changed Expand file tree Collapse file tree 6 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -2823,6 +2823,9 @@ pub const P_ALL: idtype_t = 0;
28232823pub const P_PID : idtype_t = 1 ;
28242824pub const P_PGID : idtype_t = 2 ;
28252825
2826+ pub const UTIME_OMIT : c_long = -2 ;
2827+ pub const UTIME_NOW : c_long = -1 ;
2828+
28262829pub const XATTR_NOFOLLOW : :: c_int = 0x0001 ;
28272830pub const XATTR_CREATE : :: c_int = 0x0002 ;
28282831pub const XATTR_REPLACE : :: c_int = 0x0004 ;
Original file line number Diff line number Diff line change @@ -1041,6 +1041,9 @@ pub const P_PID: idtype_t = 0;
10411041pub const P_PGID : idtype_t = 2 ;
10421042pub const P_ALL : idtype_t = 7 ;
10431043
1044+ pub const UTIME_OMIT : c_long = -2 ;
1045+ pub const UTIME_NOW : c_long = -1 ;
1046+
10441047pub const B460800 : :: speed_t = 460800 ;
10451048pub const B921600 : :: speed_t = 921600 ;
10461049
Original file line number Diff line number Diff line change @@ -1357,6 +1357,9 @@ pub const P_ALL: idtype_t = 0;
13571357pub const P_PID : idtype_t = 1 ;
13581358pub const P_PGID : idtype_t = 4 ;
13591359
1360+ pub const UTIME_OMIT : c_long = 1073741822 ;
1361+ pub const UTIME_NOW : c_long = 1073741823 ;
1362+
13601363pub const B460800 : :: speed_t = 460800 ;
13611364pub const B921600 : :: speed_t = 921600 ;
13621365
Original file line number Diff line number Diff line change @@ -1039,6 +1039,9 @@ pub const P_ALL: idtype_t = 0;
10391039pub const P_PID : idtype_t = 1 ;
10401040pub const P_PGID : idtype_t = 2 ;
10411041
1042+ pub const UTIME_OMIT : c_long = 1000000001 ;
1043+ pub const UTIME_NOW : c_long = 1000000000 ;
1044+
10421045pub const VINTR : usize = 0 ;
10431046pub const VQUIT : usize = 1 ;
10441047pub const VERASE : usize = 2 ;
Original file line number Diff line number Diff line change @@ -965,6 +965,9 @@ pub const P_CTID: idtype_t = 13;
965965pub const P_CPUID : idtype_t = 14 ;
966966pub const P_PSETID : idtype_t = 15 ;
967967
968+ pub const UTIME_OMIT : c_long = -2 ;
969+ pub const UTIME_NOW : c_long = -1 ;
970+
968971pub const PROT_NONE : :: c_int = 0 ;
969972pub const PROT_READ : :: c_int = 1 ;
970973pub const PROT_WRITE : :: c_int = 2 ;
Original file line number Diff line number Diff line change @@ -334,6 +334,9 @@ pub const AT_EACCESS: c_int = 0x0;
334334pub const AT_SYMLINK_NOFOLLOW : c_int = 0x1 ;
335335pub const AT_SYMLINK_FOLLOW : c_int = 0x2 ;
336336pub const AT_REMOVEDIR : c_int = 0x4 ;
337+ pub const UTIME_OMIT : c_long = 1073741822 ;
338+ pub const UTIME_NOW : c_long = 1073741823 ;
339+
337340
338341pub const E2BIG : c_int = __WASI_E2BIG as c_int ;
339342pub const EACCES : c_int = __WASI_EACCES as c_int ;
You can’t perform that action at this time.
0 commit comments