Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.13 15 lines 388 B view raw
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 9typedef long syscall_handler_t(struct pt_regs); 10 11extern syscall_handler_t *sys_call_table[]; 12 13#define EXECUTE_SYSCALL(syscall, regs) \ 14 ((long (*)(struct syscall_args)) \ 15 (*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))