File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1336,7 +1336,7 @@ fn test_dragonflybsd(target: &str) {
13361336 // skip those that are manually verified
13371337 match name {
13381338 // FIXME: https://github.com/rust-lang/libc/issues/1272
1339- "execv" | "execve" | "execvp" => true ,
1339+ "execv" | "execve" | "execvp" | "fexecve" => true ,
13401340
13411341 "getrlimit" | "getrlimit64" | // non-int in 1st arg
13421342 "setrlimit" | "setrlimit64" | // non-int in 1st arg
Original file line number Diff line number Diff line change @@ -1227,6 +1227,7 @@ faccessat
12271227fchdir
12281228fchflags
12291229fdopendir
1230+ fexecve
12301231fmemopen
12311232forkpty
12321233fparseln
Original file line number Diff line number Diff line change @@ -1702,11 +1702,6 @@ extern "C" {
17021702 msgflg : :: c_int ,
17031703 ) -> :: c_int ;
17041704 pub fn cfmakesane ( termios : * mut :: termios ) ;
1705- pub fn fexecve (
1706- fd : :: c_int ,
1707- argv : * const * const :: c_char ,
1708- envp : * const * const :: c_char ,
1709- ) -> :: c_int ;
17101705
17111706 pub fn pdfork ( fdp : * mut :: c_int , flags : :: c_int ) -> :: pid_t ;
17121707 pub fn pdgetpid ( fd : :: c_int , pidp : * mut :: pid_t ) -> :: c_int ;
Original file line number Diff line number Diff line change @@ -1441,6 +1441,11 @@ extern "C" {
14411441 pub fn duplocale ( base : :: locale_t ) -> :: locale_t ;
14421442 pub fn endutxent ( ) ;
14431443 pub fn fchflags ( fd : :: c_int , flags : :: c_ulong ) -> :: c_int ;
1444+ pub fn fexecve (
1445+ fd : :: c_int ,
1446+ argv : * const * const :: c_char ,
1447+ envp : * const * const :: c_char ,
1448+ ) -> :: c_int ;
14441449 pub fn futimens ( fd : :: c_int , times : * const :: timespec ) -> :: c_int ;
14451450 pub fn getdomainname ( name : * mut :: c_char , len : :: c_int ) -> :: c_int ;
14461451 pub fn getgrent_r (
You can’t perform that action at this time.
0 commit comments