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

Function nxtask_create

sched/task/task_create.c:160–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158 ****************************************************************************/
159
160int nxtask_create(FAR const char *name, int priority,
161 FAR void *stack_addr, int stack_size, main_t entry,
162 FAR char * const argv[], FAR char * const envp[])
163{
164 return nxthread_create(name, TCB_FLAG_TTYPE_TASK, priority, stack_addr,
165 stack_size, entry, argv, envp ? envp : environ);
166}
167
168/****************************************************************************
169 * Name: task_create

Callers 1

task_create_with_stackFunction · 0.85

Calls 1

nxthread_createFunction · 0.85

Tested by

no test coverage detected