Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /* systbls.S: System call entry point tables for OS compatibility.
0003  *            The native Linux system call table lives here also.
0004  *
0005  * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net)
0006  *
0007  * Based upon preliminary work which is:
0008  *
0009  * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu)
0010  */
0011 
0012 #define __SYSCALL_WITH_COMPAT(nr, native, compat)   __SYSCALL(nr, native)
0013 #define __SYSCALL(nr, entry) .long entry
0014     .data
0015     .align 4
0016     .globl sys_call_table
0017 sys_call_table:
0018 #include <asm/syscall_table_32.h>   /* 32-bit native syscalls */