MCPcopy Create free account
hub / github.com/apache/nuttx / posix_spawn

Function posix_spawn

sched/task/task_posixspawn.c:218–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216 ****************************************************************************/
217
218int 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}

Callers

nothing calls this directly

Calls 1

nxposix_spawn_execFunction · 0.85

Tested by

no test coverage detected