]> Git Repo - J-linux.git/blob - arch/x86/um/shared/sysdep/syscalls_32.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / arch / x86 / um / shared / sysdep / syscalls_32.h
1 /* 
2  * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
3  * Licensed under the GPL
4  */
5
6 #include <asm/unistd.h>
7 #include <sysdep/ptrace.h>
8
9 typedef long syscall_handler_t(struct syscall_args);
10
11 extern syscall_handler_t *sys_call_table[];
12
13 #define EXECUTE_SYSCALL(syscall, regs) \
14         ((*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))
This page took 0.028284 seconds and 4 git commands to generate.