arch/arm/include/asm/glue.h

Source file repositories/reference/linux-study-clean/arch/arm/include/asm/glue.h

File Facts

System
Linux kernel
Corpus path
arch/arm/include/asm/glue.h
Extension
.h
Size
613 bytes
Lines
23
Domain
Architecture Layer
Bucket
arch/arm
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

#ifdef __KERNEL__

#ifdef __STDC__
#define ____glue(name,fn)	name##fn
#else
#define ____glue(name,fn)	name/**/fn
#endif
#define __glue(name,fn)		____glue(name,fn)

#endif

Annotation

Implementation Notes