diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2010-09-09 15:21:12 -0500 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2010-09-09 15:21:12 -0500 |
| commit | 51621c156c03feff0d5e4246ecd2e18473fd347d (patch) | |
| tree | 4e64c4bb13b54a081e3b2d0d2db886d4f3379def /src/include/sys | |
| parent | 80b83026362d07b10ed1ae16afb162f7699757cb (diff) | |
| download | talos-hostboot-51621c156c03feff0d5e4246ecd2e18473fd347d.tar.gz talos-hostboot-51621c156c03feff0d5e4246ecd2e18473fd347d.zip | |
Add task_exec system call.
Diffstat (limited to 'src/include/sys')
| -rw-r--r-- | src/include/sys/task.h | 2 | ||||
| -rw-r--r-- | src/include/sys/vfs.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/include/sys/task.h b/src/include/sys/task.h index 520008e6d..ca1475b27 100644 --- a/src/include/sys/task.h +++ b/src/include/sys/task.h @@ -16,6 +16,8 @@ void task_end(); tid_t task_gettid(); cpuid_t task_getcpuid(); +tid_t task_exec(const char*, void*); + #ifdef __cplusplus } #endif diff --git a/src/include/sys/vfs.h b/src/include/sys/vfs.h index e596030fe..d55a44710 100644 --- a/src/include/sys/vfs.h +++ b/src/include/sys/vfs.h @@ -24,6 +24,7 @@ enum VfsMessages { VFS_MSG_REGISTER_MSGQ, VFS_MSG_RESOLVE_MSGQ, + VFS_MSG_EXEC, }; struct VfsSystemModule |

