diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-18 17:50:02 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-18 17:50:02 +0200 |
commit | eb7b832d47bcbd74181028c62e871d407ba63a23 (patch) | |
tree | 29489cb58898c77860fe83118ef30689e131ae2d /Source/Library/Interface | |
parent | e589a45295a871f38d4a1d1f23b370b612f99be5 (diff) | |
download | Melon-eb7b832d47bcbd74181028c62e871d407ba63a23.tar.gz Melon-eb7b832d47bcbd74181028c62e871d407ba63a23.zip |
More work on syscalls
Diffstat (limited to 'Source/Library/Interface')
-rw-r--r-- | Source/Library/Interface/Process.iface.h | 8 | ||||
-rw-r--r-- | Source/Library/Interface/Thread.iface.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/Source/Library/Interface/Process.iface.h b/Source/Library/Interface/Process.iface.h new file mode 100644 index 0000000..d639725 --- /dev/null +++ b/Source/Library/Interface/Process.iface.h @@ -0,0 +1,8 @@ +#ifndef DEF_PROCESS_IFACE_H +#define DEF_PROCESS_IFACE_H + +#define PR_IFACE_OBJTYPE 0x20 +#define PR_IFACE_EXIT 0x01 +#define PR_IFACE_ALLOCPAGE 0x02 + +#endif diff --git a/Source/Library/Interface/Thread.iface.h b/Source/Library/Interface/Thread.iface.h new file mode 100644 index 0000000..2a64924 --- /dev/null +++ b/Source/Library/Interface/Thread.iface.h @@ -0,0 +1,8 @@ +#ifndef DEF_THREAD_IFACE_H +#define DEF_THREAD_IFACE_H + +#define TH_IFACE_OBJTYPE 0x21 +#define TH_IFACE_SLEEP 0x01 +#define TH_IFACE_FINISH 0x02 + +#endif |