arch/m68k/kernel/syscalltable.S

Source file repositories/reference/linux-study-clean/arch/m68k/kernel/syscalltable.S

File Facts

System
Linux kernel
Corpus path
arch/m68k/kernel/syscalltable.S
Extension
.S
Size
645 bytes
Lines
26
Domain
Architecture Layer
Bucket
arch/m68k
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

#include <linux/linkage.h>

#ifndef CONFIG_MMU
#define sys_mmap2	sys_mmap_pgoff
#endif

#define __SYSCALL(nr, entry) .long entry
	.section .rodata
ALIGN
ENTRY(sys_call_table)
#include <asm/syscall_table.h>

Annotation

Implementation Notes