From eca57656bfb384583c1c4b34de46cde6b36d6694 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Sat, 22 Nov 2014 17:57:57 +0100 Subject: added call_unhandled for unhandled syscalls --- kernel/syscalls.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'kernel/syscalls.h') 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); -- cgit v1.2.3