-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
freebsd adding execvpe support from 14.1 release #3745
Conversation
r? @JohnTitor rustbot has assigned @JohnTitor. Use |
@@ -5462,6 +5462,12 @@ extern "C" { | |||
) -> ::c_int; | |||
pub fn closefrom(lowfd: ::c_int); | |||
pub fn close_range(lowfd: ::c_uint, highfd: ::c_uint, flags: ::c_int) -> ::c_int; | |||
|
|||
pub fn execvpe( | |||
name: *const ::c_char, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is called file
per https://man.freebsd.org/cgi/man.cgi?query=execvp
Changes look good to me with one nit. Could you target |
Thanks! |
(backport <rust-lang#3745>) (cherry picked from commit 67d062f)
(backport <rust-lang#3745>) [resolve conflicts - Trevor] (cherry picked from commit 67d062f)
close #3730