Files
linux-apfs/arch/x86/kernel/syscall_64.c
T

30 lines
670 B
C
Raw Normal View History

/* System call table for x86-64. */
2005-04-16 15:20:36 -07:00
#include <linux/linkage.h>
#include <linux/sys.h>
#include <linux/cache.h>
#include <asm/asm-offsets.h>
2005-04-16 15:20:36 -07:00
#define __NO_STUBS
#define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
2005-04-16 15:20:36 -07:00
#undef _ASM_X86_64_UNISTD_H_
#include <asm/unistd_64.h>
2005-04-16 15:20:36 -07:00
#undef __SYSCALL
#define __SYSCALL(nr, sym) [nr] = sym,
2005-04-16 15:20:36 -07:00
#undef _ASM_X86_64_UNISTD_H_
typedef void (*sys_call_ptr_t)(void);
2005-04-16 15:20:36 -07:00
extern void sys_ni_syscall(void);
const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = {
/*
*Smells like a like a compiler bug -- it doesn't work
*when the & below is removed.
*/
2005-04-16 15:20:36 -07:00
[0 ... __NR_syscall_max] = &sys_ni_syscall,
#include <asm/unistd_64.h>
2005-04-16 15:20:36 -07:00
};