| 216 | ****************************************************************************/ |
| 217 | |
| 218 | int posix_spawn(FAR pid_t *pid, FAR const char *path, |
| 219 | FAR const posix_spawn_file_actions_t *file_actions, |
| 220 | FAR const posix_spawnattr_t *attr, |
| 221 | FAR char * const argv[], FAR char * const envp[]) |
| 222 | { |
| 223 | return nxposix_spawn_exec(pid, path, |
| 224 | file_actions != NULL ? |
| 225 | *file_actions : NULL, attr, argv, envp); |
| 226 | } |
nothing calls this directly
no test coverage detected