diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2010-06-07 15:38:09 -0500 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2010-06-07 15:38:09 -0500 |
| commit | aa1db69f1de27bba8ee5e128f717557780f21e0d (patch) | |
| tree | 2c6ad4cdeb366f2d5153a38c6ba078af3f347cef /src/include/kernel/syscalls.H | |
| parent | 546a015f74fab0c4e359cf97f289ff26d6481844 (diff) | |
| download | talos-hostboot-aa1db69f1de27bba8ee5e128f717557780f21e0d.tar.gz talos-hostboot-aa1db69f1de27bba8ee5e128f717557780f21e0d.zip | |
Add syscall interfaces and task_yield
Diffstat (limited to 'src/include/kernel/syscalls.H')
| -rw-r--r-- | src/include/kernel/syscalls.H | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/kernel/syscalls.H b/src/include/kernel/syscalls.H new file mode 100644 index 000000000..a7a0ef6b7 --- /dev/null +++ b/src/include/kernel/syscalls.H @@ -0,0 +1,13 @@ +#ifndef __KERNEL_SYSCALLS_H +#define __KERNEL_SYSCALLS_H + +namespace Systemcalls +{ + enum SysCalls + { + TASK_YIELD = 0, + + SYSCALL_MAX + }; +}; +#endif |

