-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cxx/*
posixExec
-> execves
+ execvex
`posixExec()` was produced before had access to `g++` / `clang++`, thus had false assumptions about how to use `execve`. `execves()` now `fork()`s, wraps `execve()` (but accepts std::string inputs, does not require you to terminate lists with `NULL`, plus allows to omit `envp`), plus `waitpid()`s. `execvex()` wraps `execves()`, to do what `posixExec()` was advertised as. @posts/VirusAnalysis.md /* Reflects this */
- Loading branch information
1 parent
caecee3
commit 9a1aae7
Showing
5 changed files
with
70 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters