aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/um/shared/sysdep/syscalls_32.h
blob: f6e9f84397e792d5f3ba3102f6c10cfe7b57aae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 
 * Copyright (C) 2000 - 2008 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 * Licensed under the GPL
 */

#include <asm/unistd.h>
#include <sysdep/ptrace.h>

typedef long syscall_handler_t(struct syscall_args);

extern syscall_handler_t *sys_call_table[];

#define EXECUTE_SYSCALL(syscall, regs) \
	((*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))