systbls_32.S (597473720f4dc69749542bfcfed4a927a43d935e) | systbls_32.S (5ad4e94b46a618f333a6b1a34ee391c8a6bb40b2) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* systbls.S: System call entry point tables for OS compatibility. 3 * The native Linux system call table lives here also. 4 * 5 * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net) 6 * 7 * Based upon preliminary work which is: 8 * 9 * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu) 10 */ 11 | 1/* SPDX-License-Identifier: GPL-2.0 */ 2/* systbls.S: System call entry point tables for OS compatibility. 3 * The native Linux system call table lives here also. 4 * 5 * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net) 6 * 7 * Based upon preliminary work which is: 8 * 9 * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu) 10 */ 11 |
12#define __SYSCALL(nr, entry, nargs) .long entry | 12#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, native) 13#define __SYSCALL(nr, entry) .long entry |
13 .data 14 .align 4 15 .globl sys_call_table 16sys_call_table: 17#include <asm/syscall_table_32.h> /* 32-bit native syscalls */ | 14 .data 15 .align 4 16 .globl sys_call_table 17sys_call_table: 18#include <asm/syscall_table_32.h> /* 32-bit native syscalls */ |
18#undef __SYSCALL | |