diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-24 22:58:28 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-24 22:58:28 +0200 |
commit | d1ac6fb03e3110e35023f60f643f0c4d02c3d8b6 (patch) | |
tree | b7f693ab8ea9d320f5bd1b838e8eb3d3bcd690f4 /Source/Library/Interface | |
parent | b639b99b3e8f4cf77560d8d473b13d992ac8eb10 (diff) | |
download | Melon-d1ac6fb03e3110e35023f60f643f0c4d02c3d8b6.tar.gz Melon-d1ac6fb03e3110e35023f60f643f0c4d02c3d8b6.zip |
More work on syscalls : userland applications can run other apps.
Diffstat (limited to 'Source/Library/Interface')
-rw-r--r-- | Source/Library/Interface/Process.iface.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/Library/Interface/Process.iface.h b/Source/Library/Interface/Process.iface.h index 52543aa..0152947 100644 --- a/Source/Library/Interface/Process.iface.h +++ b/Source/Library/Interface/Process.iface.h @@ -1,10 +1,14 @@ #ifndef DEF_PROCESS_IFACE_H #define DEF_PROCESS_IFACE_H +#define E_AUTODELETE 0x0FFFFF03 + #define PRIF_OBJTYPE 0x20 //S = static, GET = get, C = current, PR = process #define PRIF_SGETCPR 0 +#define PRIF_SRUN 1 +#define PRIF_SWAIT 2 #define PRIF_EXIT 0x01 #define PRIF_ALLOCPAGE 0x02 @@ -15,4 +19,10 @@ #define PRIF_ARGC 0x10 #define PRIF_ARGV 0x11 +#define PRIF_START 0x20 +#define PRIF_AUTODELETE 0x21 +#define PRIF_PUSHARG 0x28 +#define PRIF_SETOUTVT 0x29 +#define PRIF_SETINVT 0x30 + #endif |