diff options
author | Patrick Williams <iawillia@us.ibm.com> | 2010-07-02 13:25:57 -0500 |
---|---|---|
committer | Patrick Williams <iawillia@us.ibm.com> | 2010-07-02 13:25:57 -0500 |
commit | 0a157437c294f2f3a244e0125e673b3791529052 (patch) | |
tree | 8bc431bc78fd38258c0047feeb7503e47423e802 /src/include/sys/task.h | |
parent | 419ee15eddec34322a9d44a7b9099494fb2ff0c7 (diff) | |
download | talos-hostboot-0a157437c294f2f3a244e0125e673b3791529052.tar.gz talos-hostboot-0a157437c294f2f3a244e0125e673b3791529052.zip |
Start virtual memory management.
Diffstat (limited to 'src/include/sys/task.h')
-rw-r--r-- | src/include/sys/task.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/sys/task.h b/src/include/sys/task.h index fa9838723..e50c6daee 100644 --- a/src/include/sys/task.h +++ b/src/include/sys/task.h @@ -2,14 +2,13 @@ #define __SYS_TASK_H #include <stdint.h> +#include <kernel/types.h> #ifdef __cplusplus extern "C" { #endif -typedef uint64_t tid_t; - void task_yield(); tid_t task_create(void(*)(void*), void*); void task_end(); |