X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fsyscalls.h;h=743a1ca3da0ee5b19e51973ddcbb9893f65c62e8;hb=7180d8e33801a3205012d27ea5ccb80f70695b5d;hp=b2c13cf7ad8c69a3c877319cc717fa6dc1f69eda;hpb=8bc40333b1401d7616b225945fee53d972c2f418;p=tpg%2Facess2.git diff --git a/Kernel/include/syscalls.h b/Kernel/include/syscalls.h index b2c13cf7..743a1ca3 100644 --- a/Kernel/include/syscalls.h +++ b/Kernel/include/syscalls.h @@ -53,6 +53,8 @@ enum eSyscalls { SYS_FINFO, // 75 - Get file information SYS_SEEK, // 76 - Seek to a new position in the file SYS_TELL, // 77 - Return the current file position + SYS_CHDIR, // 78 - Change current directory + SYS_GETCWD, // 79 - Get current directory NUM_SYSCALLS, SYS_DEBUG = 0x100 // 0x100 - Print a debug string }; @@ -71,6 +73,6 @@ static const char *cSYSCALL_NAMES[] = { "","","","","SYS_OPEN","SYS_REOPEN", "SYS_CLOSE","SYS_READ","SYS_WRITE","SYS_IOCTL","SYS_READDIR","SYS_MKDIR", "SYS_SYMLINK","SYS_GETACL","SYS_SETACL","SYS_FINFO","SYS_SEEK","SYS_TELL", - "" + "SYS_CHDIR","SYS_GETCWD","" }; #endif