#include <sys/types.h>
Go to the source code of this file.
Typedefs | |
typedef uint64_t | task_id_t |
Enumerations | |
enum | task_exit_t |
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.h.