(
path: &CStr,
args: *const *const u8,
env_vars: *const *const u8,
)
| 97 | } |
| 98 | |
| 99 | pub(crate) unsafe fn execve( |
| 100 | path: &CStr, |
| 101 | args: *const *const u8, |
| 102 | env_vars: *const *const u8, |
| 103 | ) -> io::Errno { |
| 104 | ret_error(syscall_readonly!(__NR_execve, path, args, env_vars)) |
| 105 | } |
| 106 | |
| 107 | pub(crate) mod tls { |
| 108 | use super::*; |
nothing calls this directly
no test coverage detected