| 158 | } |
| 159 | |
| 160 | extern "C" int |
| 161 | posix_spawn(pid_t *pid, |
| 162 | const char *path, |
| 163 | const posix_spawn_file_actions_t *file_actions, |
| 164 | const posix_spawnattr_t *attrp, |
| 165 | char *const argv[], |
| 166 | char *const envp[]) |
| 167 | { |
| 168 | return dmtcp_spawn(pid, path, file_actions, attrp, argv, envp); |
| 169 | } |
| 170 | |
| 171 | extern "C" int |
| 172 | posix_spawnp(pid_t *pid, |
nothing calls this directly
no test coverage detected