X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=AcessNative%2Fsyscalls.h;h=37bc88cc6548b6b2f4eba738c60a07df54f61432;hb=9698333503f59d07ceb7d0b1bb89bacef05f37e8;hp=3c7bd85d9b5e2457900b203a3ed6fe7e924fe2bd;hpb=a41f3e5efdf853726d078dc03550de40e9d63bdd;p=tpg%2Facess2.git diff --git a/AcessNative/syscalls.h b/AcessNative/syscalls.h index 3c7bd85d..37bc88cc 100644 --- a/AcessNative/syscalls.h +++ b/AcessNative/syscalls.h @@ -14,6 +14,11 @@ * uint8_t paramData[SUM(params[].Lengh)]; */ +typedef struct { + uint32_t pid; + uint32_t key; +} tRequestAuthHdr; + typedef struct sRequestValue { /// \see eArgumentTypes uint16_t Type; @@ -64,6 +69,7 @@ enum eSyscalls { SYS_SENDMSG, SYS_GETMSG, SYS_SELECT, + SYS_WAITEVENT, N_SYSCALLS }; @@ -103,7 +109,8 @@ static const char * casSYSCALL_NAMES[] = { "SYS_AN_FORK", "SYS_SENDMSG", "SYS_GETMSG", - "SYS_SELECT" + "SYS_SELECT", + "SYS_WAITEVENT" }; #endif