#include <task.h>#include <libc.h>#include <stdlib.h>#include <errno.h>#include <loader/loader.h>#include <stdarg.h>#include <str.h>#include <ipc/ns.h>#include <macros.h>#include <async.h>Go to the source code of this file.
Functions | |
| task_id_t | task_get_id (void) |
| int | task_kill (task_id_t task_id) |
| Kill a task. | |
| int | task_retval (int val) |
| int | task_set_name (const char *name) |
| Set the task name. | |
| int | task_spawnl (task_id_t *task_id, const char *path,...) |
| Create a new task by running an executable from the filesystem. | |
| int | task_spawnv (task_id_t *id, const char *path, const char *const args[]) |
| Create a new task by running an executable from the filesystem. | |
| int | task_wait (task_id_t id, task_exit_t *texit, int *retval) |
Definition in file task.c.
1.4.7