summaryrefslogtreecommitdiff
path: root/arch/score/kernel/sys_call_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/score/kernel/sys_call_table.c')
-rw-r--r--arch/score/kernel/sys_call_table.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/score/kernel/sys_call_table.c b/arch/score/kernel/sys_call_table.c
new file mode 100644
index 000000000000..287369b88c43
--- /dev/null
+++ b/arch/score/kernel/sys_call_table.c
@@ -0,0 +1,12 @@
+#include <linux/syscalls.h>
+#include <linux/signal.h>
+#include <linux/unistd.h>
+
+#include <asm/syscalls.h>
+
+#undef __SYSCALL
+#define __SYSCALL(nr, call) [nr] = (call),
+
+void *sys_call_table[__NR_syscalls] = {
+#include <asm/unistd.h>
+};