From: John Hodge Date: Fri, 7 Dec 2012 05:21:03 +0000 (+0800) Subject: Kernel - Updated syscall list header X-Git-Tag: rel0.15~611^2~2 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=e16396efaf3f1d8cc60e889364f56cb4e013b7fa;p=tpg%2Facess2.git Kernel - Updated syscall list header --- diff --git a/KernelLand/Kernel/GenSyscalls.pl b/KernelLand/Kernel/GenSyscalls.pl index 487ceca4..fdf33e91 100755 --- a/KernelLand/Kernel/GenSyscalls.pl +++ b/KernelLand/Kernel/GenSyscalls.pl @@ -24,7 +24,9 @@ close(FILE); # C header open(HEADER, ">include/syscalls.h"); print HEADER "/* - * Acess2 + * Acess2 Kernel + * - By John Hodge (thePowersGang) + * * syscalls.h * - System Call List * @@ -46,7 +48,7 @@ print HEADER " #define NUM_SYSCALLS ",$i," #define SYS_DEBUG 0x100 -#ifndef __ASSEMBLER__ +#if !defined(__ASSEMBLER__) && !defined(NO_SYSCALL_STRS) static const char *cSYSCALL_NAMES[] = { "; diff --git a/KernelLand/Kernel/include/syscalls.h b/KernelLand/Kernel/include/syscalls.h index 4164e647..8a935119 100644 --- a/KernelLand/Kernel/include/syscalls.h +++ b/KernelLand/Kernel/include/syscalls.h @@ -1,5 +1,7 @@ /* - * Acess2 + * Acess2 Kernel + * - By John Hodge (thePowersGang) + * * syscalls.h * - System Call List * @@ -68,7 +70,7 @@ #define NUM_SYSCALLS 88 #define SYS_DEBUG 0x100 -#ifndef __ASSEMBLER__ +#if !defined(__ASSEMBLER__) && !defined(NO_SYSCALL_STRS) static const char *cSYSCALL_NAMES[] = { "SYS_EXIT", "SYS_CLONE",