arch/nios2/kernel/syscall_table.c

Source file repositories/reference/linux-study-clean/arch/nios2/kernel/syscall_table.c

File Facts

System
Linux kernel
Corpus path
arch/nios2/kernel/syscall_table.c
Extension
.c
Size
528 bytes
Lines
22
Domain
Architecture Layer
Bucket
arch/nios2
Inferred role
Architecture Layer: syscall or user/kernel boundary
Status
core implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright Altera Corporation (C) 2013. All rights reserved
 */

#include <linux/syscalls.h>
#include <linux/signal.h>
#include <linux/unistd.h>

#include <asm/syscalls.h>

#define __SYSCALL(nr, call) [nr] = (call),
#define __SYSCALL_WITH_COMPAT(nr, native, compat)        __SYSCALL(nr, native)

#define sys_mmap2 sys_mmap_pgoff
#define sys_clone3 __sys_clone3

void *sys_call_table[__NR_syscalls] = {
	[0 ... __NR_syscalls-1] = sys_ni_syscall,
#include <asm/syscall_table_32.h>
};

Annotation

Implementation Notes