| 169 | } |
| 170 | |
| 171 | extern "C" int |
| 172 | posix_spawnp(pid_t *pid, |
| 173 | const char *file, |
| 174 | const posix_spawn_file_actions_t *file_actions, |
| 175 | const posix_spawnattr_t *attrp, |
| 176 | char *const argv[], |
| 177 | char *const envp[]) |
| 178 | { |
| 179 | return dmtcp_spawn(pid, file, file_actions, attrp, argv, envp); |
| 180 | } |
nothing calls this directly
no test coverage detected