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