File tree Expand file tree Collapse file tree 6 files changed +8
-2
lines changed Expand file tree Collapse file tree 6 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,10 @@ FIONREAD
297297FIOSETOWN
298298FLUSHO
299299FOPEN_MAX
300+ F_DUP2FD
301+ F_DUP2FD_CLOEXEC
300302F_GETOWN
303+ F_GETPATH
301304F_LOCK
302305F_RDLCK
303306F_SETOWN
Original file line number Diff line number Diff line change @@ -349,6 +349,7 @@ FOPEN_MAX
349349F_CLOSEM
350350F_GETNOSIGPIPE
351351F_GETOWN
352+ F_GETPATH
352353F_LOCK
353354F_MAXFD
354355F_RDLCK
Original file line number Diff line number Diff line change @@ -760,6 +760,7 @@ pub const O_DIRECTORY: ::c_int = 0x08000000;
760760pub const F_GETLK : :: c_int = 7 ;
761761pub const F_SETLK : :: c_int = 8 ;
762762pub const F_SETLKW : :: c_int = 9 ;
763+ pub const F_GETPATH : :: c_int = 19 ;
763764pub const ENOMEDIUM : :: c_int = 93 ;
764765pub const EASYNC : :: c_int = 99 ;
765766pub const ELAST : :: c_int = 99 ;
Original file line number Diff line number Diff line change @@ -2969,8 +2969,6 @@ pub const SF_SNAPSHOT: ::c_ulong = 0x00200000;
29692969
29702970// fcntl commands
29712971pub const F_ADD_SEALS : :: c_int = 19 ;
2972- pub const F_DUP2FD : :: c_int = 10 ;
2973- pub const F_DUP2FD_CLOEXEC : :: c_int = 18 ;
29742972pub const F_GET_SEALS : :: c_int = 20 ;
29752973pub const F_OGETLK : :: c_int = 7 ;
29762974pub const F_OSETLK : :: c_int = 8 ;
Original file line number Diff line number Diff line change @@ -573,6 +573,8 @@ pub const F_TEST: ::c_int = 3;
573573pub const F_TLOCK : :: c_int = 2 ;
574574pub const F_ULOCK : :: c_int = 0 ;
575575pub const F_DUPFD_CLOEXEC : :: c_int = 17 ;
576+ pub const F_DUP2FD : :: c_int = 10 ;
577+ pub const F_DUP2FD_CLOEXEC : :: c_int = 18 ;
576578pub const SIGHUP : :: c_int = 1 ;
577579pub const SIGINT : :: c_int = 2 ;
578580pub const SIGQUIT : :: c_int = 3 ;
Original file line number Diff line number Diff line change @@ -1253,6 +1253,7 @@ pub const F_CLOSEM: ::c_int = 10;
12531253pub const F_GETNOSIGPIPE : :: c_int = 13 ;
12541254pub const F_SETNOSIGPIPE : :: c_int = 14 ;
12551255pub const F_MAXFD : :: c_int = 11 ;
1256+ pub const F_GETPATH : :: c_int = 15 ;
12561257
12571258pub const IP_RECVDSTADDR : :: c_int = 7 ;
12581259pub const IP_SENDSRCADDR : :: c_int = IP_RECVDSTADDR ;
You can’t perform that action at this time.
0 commit comments