arch/sparc/include/asm/vdso.h

Source file repositories/reference/linux-study-clean/arch/sparc/include/asm/vdso.h

File Facts

System
Linux kernel
Corpus path
arch/sparc/include/asm/vdso.h
Extension
.h
Size
428 bytes
Lines
21
Domain
Architecture Layer
Bucket
arch/sparc
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

struct vdso_image {
	void *data;
	unsigned long size;   /* Always a multiple of PAGE_SIZE */
};

#ifdef CONFIG_SPARC64
extern const struct vdso_image vdso_image_64_builtin;
#endif
#ifdef CONFIG_COMPAT
extern const struct vdso_image vdso_image_32_builtin;
#endif

#endif /* _ASM_SPARC_VDSO_H */

Annotation

Implementation Notes