File tree 7 files changed +20
-0
lines changed
7 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -2830,6 +2830,9 @@ pub const P_ALL: idtype_t = 0;
2830
2830
pub const P_PID : idtype_t = 1 ;
2831
2831
pub const P_PGID : idtype_t = 2 ;
2832
2832
2833
+ pub const UTIME_OMIT : c_long = -2 ;
2834
+ pub const UTIME_NOW : c_long = -1 ;
2835
+
2833
2836
pub const XATTR_NOFOLLOW : :: c_int = 0x0001 ;
2834
2837
pub const XATTR_CREATE : :: c_int = 0x0002 ;
2835
2838
pub const XATTR_REPLACE : :: c_int = 0x0004 ;
Original file line number Diff line number Diff line change @@ -1043,6 +1043,9 @@ pub const P_PID: idtype_t = 0;
1043
1043
pub const P_PGID : idtype_t = 2 ;
1044
1044
pub const P_ALL : idtype_t = 7 ;
1045
1045
1046
+ pub const UTIME_OMIT : c_long = -2 ;
1047
+ pub const UTIME_NOW : c_long = -1 ;
1048
+
1046
1049
pub const B460800 : :: speed_t = 460800 ;
1047
1050
pub const B921600 : :: speed_t = 921600 ;
1048
1051
Original file line number Diff line number Diff line change @@ -1363,6 +1363,9 @@ pub const P_ALL: idtype_t = 0;
1363
1363
pub const P_PID : idtype_t = 1 ;
1364
1364
pub const P_PGID : idtype_t = 4 ;
1365
1365
1366
+ pub const UTIME_OMIT : c_long = 1073741822 ;
1367
+ pub const UTIME_NOW : c_long = 1073741823 ;
1368
+
1366
1369
pub const B460800 : :: speed_t = 460800 ;
1367
1370
pub const B921600 : :: speed_t = 921600 ;
1368
1371
Original file line number Diff line number Diff line change @@ -748,6 +748,9 @@ pub const ELAST : ::c_int = 95;
748
748
749
749
pub const F_DUPFD_CLOEXEC : :: c_int = 10 ;
750
750
751
+ pub const UTIME_OMIT : c_long = -2 ;
752
+ pub const UTIME_NOW : c_long = -1 ;
753
+
751
754
pub const AT_FDCWD : :: c_int = -100 ;
752
755
pub const AT_EACCESS : :: c_int = 0x01 ;
753
756
pub const AT_SYMLINK_NOFOLLOW : :: c_int = 0x02 ;
Original file line number Diff line number Diff line change @@ -1039,6 +1039,9 @@ pub const P_ALL: idtype_t = 0;
1039
1039
pub const P_PID : idtype_t = 1 ;
1040
1040
pub const P_PGID : idtype_t = 2 ;
1041
1041
1042
+ pub const UTIME_OMIT : c_long = 1000000001 ;
1043
+ pub const UTIME_NOW : c_long = 1000000000 ;
1044
+
1042
1045
pub const VINTR : usize = 0 ;
1043
1046
pub const VQUIT : usize = 1 ;
1044
1047
pub 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;
965
965
pub const P_CPUID : idtype_t = 14 ;
966
966
pub const P_PSETID : idtype_t = 15 ;
967
967
968
+ pub const UTIME_OMIT : c_long = -2 ;
969
+ pub const UTIME_NOW : c_long = -1 ;
970
+
968
971
pub const PROT_NONE : :: c_int = 0 ;
969
972
pub const PROT_READ : :: c_int = 1 ;
970
973
pub const PROT_WRITE : :: c_int = 2 ;
Original file line number Diff line number Diff line change @@ -334,6 +334,8 @@ pub const AT_EACCESS: c_int = 0x0;
334
334
pub const AT_SYMLINK_NOFOLLOW : c_int = 0x1 ;
335
335
pub const AT_SYMLINK_FOLLOW : c_int = 0x2 ;
336
336
pub const AT_REMOVEDIR : c_int = 0x4 ;
337
+ pub const UTIME_OMIT : c_long = 1073741822 ;
338
+ pub const UTIME_NOW : c_long = 1073741823 ;
337
339
338
340
pub const E2BIG : c_int = __WASI_E2BIG as c_int ;
339
341
pub const EACCES : c_int = __WASI_EACCES as c_int ;
You can’t perform that action at this time.
0 commit comments