arch/alpha/include/asm/linkage.h

Source file repositories/reference/linux-study-clean/arch/alpha/include/asm/linkage.h

File Facts

System
Linux kernel
Corpus path
arch/alpha/include/asm/linkage.h
Extension
.h
Size
256 bytes
Lines
10
Domain
Architecture Layer
Bucket
arch/alpha
Inferred role
Architecture Layer: implementation source
Status
source 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

#ifndef __ASM_LINKAGE_H
#define __ASM_LINKAGE_H

#define cond_syscall(x)  asm(".weak\t" #x "\n" #x " = sys_ni_syscall")
#define SYSCALL_ALIAS(alias, name)					\
	asm ( #alias " = " #name "\n\t.globl " #alias)

#endif

Annotation

Implementation Notes