diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-22 17:57:57 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-22 17:57:57 +0100 |
| commit | eca57656bfb384583c1c4b34de46cde6b36d6694 (patch) | |
| tree | 849d76c8bac2c663e7097506b1ecc66b6982dc56 /kernel/syscalls.h | |
| parent | 05156e002e30032e8c1081d47f50dd98b1241dd6 (diff) | |
added call_unhandled for unhandled syscalls
Diffstat (limited to 'kernel/syscalls.h')
| -rw-r--r-- | kernel/syscalls.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kernel/syscalls.h b/kernel/syscalls.h index 6868033..00df0fa 100644 --- a/kernel/syscalls.h +++ b/kernel/syscalls.h @@ -43,7 +43,7 @@ int syscall_fstat(int file, struct stat *st,int none); int syscall_isatty(int file,int none1,int none2); int syscall_lseek(int file,int ptr,int dir); int syscall_sbrk(int incr, int none1, int none2); - +// int syscall_gettimeofday(struct timeval *tv, struct timezone *tz); int syscall_fork(void); int syscall_getpid(void); @@ -53,6 +53,8 @@ int syscall_stat(char *file, struct stat *st); int syscall_times(struct tms *buf); int syscall_unlink(char *name); int syscall_wait(int *status); +// +int syscall_unhandled(int nr); |
