mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
Add nix::execvpe
This commit is contained in:
parent
31f3f23ee6
commit
c4192a6617
3 changed files with 21 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
#include "current-process.hh"
|
||||
#include "environment-variables.hh"
|
||||
#include "executable-path.hh"
|
||||
#include "signals.hh"
|
||||
#include "processes.hh"
|
||||
#include "finally.hh"
|
||||
|
@ -419,4 +420,10 @@ bool statusOk(int status)
|
|||
return WIFEXITED(status) && WEXITSTATUS(status) == 0;
|
||||
}
|
||||
|
||||
int execvpe(const char * file0, char * const argv[], char * const envp[])
|
||||
{
|
||||
auto file = ExecutablePath::load().findPath(file0).string();
|
||||
return execve(file.c_str(), argv, envp);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue