- updated service(s) to be KernelObject's
- various cleanups
This commit is contained in:
parent
725d240bf7
commit
eab6fd01d7
7 changed files with 31 additions and 59 deletions
|
@ -10,10 +10,11 @@ typedef u32 Handle;
|
|||
typedef s32 Result;
|
||||
|
||||
enum KernelIDType {
|
||||
KERNEL_ID_TYPE_THREAD = 1,
|
||||
KERNEL_ID_TYPE_SEMAPHORE = 2,
|
||||
KERNEL_ID_TYPE_MUTEX = 3,
|
||||
KERNEL_ID_TYPE_EVENT = 4,
|
||||
KERNEL_ID_TYPE_THREAD,
|
||||
KERNEL_ID_TYPE_SEMAPHORE,
|
||||
KERNEL_ID_TYPE_MUTEX,
|
||||
KERNEL_ID_TYPE_EVENT,
|
||||
KERNEL_ID_TYPE_SERVICE,
|
||||
};
|
||||
|
||||
enum {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue