diff options
author | Jeff Dike <jdike@addtoit.com> | 2005-09-03 15:57:42 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 00:06:23 -0700 |
commit | e32dacb9f481fd6decb41adb28e720c923d34f54 (patch) | |
tree | 77594001f5c670380897d84367442725740383d9 /arch/um/include/sysdep-i386/syscalls.h | |
parent | 08964c565b2fe49e338ffbe4907adcc19647ef16 (diff) | |
download | op-kernel-dev-e32dacb9f481fd6decb41adb28e720c923d34f54.zip op-kernel-dev-e32dacb9f481fd6decb41adb28e720c923d34f54.tar.gz |
[PATCH] uml: system call path cleanup
This merges two sets of files which had no business being split apart in the
first place.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/include/sysdep-i386/syscalls.h')
-rw-r--r-- | arch/um/include/sysdep-i386/syscalls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/include/sysdep-i386/syscalls.h b/arch/um/include/sysdep-i386/syscalls.h index be0a3e3..a0d5b74 100644 --- a/arch/um/include/sysdep-i386/syscalls.h +++ b/arch/um/include/sysdep-i386/syscalls.h @@ -16,6 +16,8 @@ extern syscall_handler_t sys_rt_sigaction; extern syscall_handler_t old_mmap_i386; +extern syscall_handler_t *sys_call_table[]; + #define EXECUTE_SYSCALL(syscall, regs) \ ((long (*)(struct syscall_args)) (*sys_call_table[syscall]))(SYSCALL_ARGS(®s->regs)) |