repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
arch
/
alpha
/
kernel
/
systbls.S
blob
9704f22ed5e3765d3324b262ee4c6e93d02020d8
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* arch/alpha/kernel/systbls.S
4
*
5
* The system call table.
6
*/
7
8
#include <asm/unistd.h>
9
10
#define __SYSCALL(nr, entry, nargs) .quad entry
11
.data
12
.align 3
13
.globl sys_call_table
14
sys_call_table:
15
#include <asm/syscall_table.h>
16
#undef __SYSCALL