File tree Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Expand file tree Collapse file tree 5 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1001,6 +1001,8 @@ extern {
1001
1001
pub fn getpriority ( which : :: c_int , who : :: c_int ) -> :: c_int ;
1002
1002
pub fn setpriority ( which : :: c_int , who : :: c_int , prio : :: c_int ) -> :: c_int ;
1003
1003
1004
+ pub fn fdopendir ( fd : :: c_int ) -> * mut :: DIR ;
1005
+
1004
1006
pub fn mknodat ( dirfd : :: c_int , pathname : * const :: c_char ,
1005
1007
mode : :: mode_t , dev : dev_t ) -> :: c_int ;
1006
1008
pub fn mkfifoat ( dirfd : :: c_int , pathname : * const :: c_char ,
Original file line number Diff line number Diff line change @@ -597,6 +597,8 @@ extern {
597
597
pub fn getpriority ( which : :: c_int , who : :: id_t ) -> :: c_int ;
598
598
pub fn setpriority ( which : :: c_int , who : :: id_t , prio : :: c_int ) -> :: c_int ;
599
599
600
+ pub fn fdopendir ( fd : :: c_int ) -> * mut :: DIR ;
601
+
600
602
pub fn mknodat ( dirfd : :: c_int , pathname : * const :: c_char ,
601
603
mode : :: mode_t , dev : dev_t ) -> :: c_int ;
602
604
pub fn mkfifoat ( dirfd : :: c_int , pathname : * const :: c_char ,
Original file line number Diff line number Diff line change @@ -761,6 +761,7 @@ extern {
761
761
pub fn waitid ( idtype : idtype_t , id : id_t , infop : * mut :: siginfo_t ,
762
762
options : :: c_int ) -> :: c_int ;
763
763
764
+ pub fn fdopendir ( fd : :: c_int ) -> * mut :: DIR ;
764
765
pub fn glob ( pattern : * const :: c_char ,
765
766
flags : :: c_int ,
766
767
errfunc : Option < extern fn ( epath : * const :: c_char ,
Original file line number Diff line number Diff line change @@ -928,6 +928,8 @@ extern {
928
928
pub fn eventfd ( init : :: c_uint , flags : :: c_int ) -> :: c_int ;
929
929
pub fn sysinfo ( info : * mut :: sysinfo ) -> :: c_int ;
930
930
931
+ pub fn fdopendir ( fd : :: c_int ) -> * mut :: DIR ;
932
+
931
933
pub fn mknodat ( dirfd : :: c_int , pathname : * const :: c_char ,
932
934
mode : :: mode_t , dev : dev_t ) -> :: c_int ;
933
935
pub fn ppoll ( fds : * mut :: pollfd ,
Original file line number Diff line number Diff line change @@ -1058,6 +1058,8 @@ extern {
1058
1058
pub fn getpriority ( which : :: c_int , who : :: c_int ) -> :: c_int ;
1059
1059
pub fn setpriority ( which : :: c_int , who : :: c_int , prio : :: c_int ) -> :: c_int ;
1060
1060
1061
+ pub fn fdopendir ( fd : :: c_int ) -> * mut :: DIR ;
1062
+
1061
1063
pub fn mknodat ( dirfd : :: c_int , pathname : * const :: c_char ,
1062
1064
mode : :: mode_t , dev : dev_t ) -> :: c_int ;
1063
1065
pub fn mkfifoat ( dirfd : :: c_int , pathname : * const :: c_char ,
You can’t perform that action at this time.
0 commit comments