We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
fexecve is defined in the IEEE Std 1003.1-2008 (POSIX.1-2008) standard, however it's not so widely supported by the libc of various different systems.
The aim is to avoid creating our own executable/library loader, and avoid ever writing to the filesystem as that leaves an audit-trail of sorts.
The underlying premise for Unix-like platforms relies having one of two options available:
exec
fexecve
For Windows platforms there are two options available:
Man pages and related info for fexecve on non-Linux platforms:
sys_fexecve
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fexecve is defined in the IEEE Std 1003.1-2008 (POSIX.1-2008) standard, however it's not so widely supported by the libc of various different systems.
The aim is to avoid creating our own executable/library loader, and avoid ever writing to the filesystem as that leaves an audit-trail of sorts.
The underlying premise for Unix-like platforms relies having one of two options available:
exec
like normal paths.fexecve
.For Windows platforms there are two options available:
Man pages and related info for fexecve on non-Linux platforms:
sys_fexecve
returns ENOSYS...The text was updated successfully, but these errors were encountered: