arch/x86/um/shared/sysdep/archsetjmp_64.h

Source file repositories/reference/linux-study-clean/arch/x86/um/shared/sysdep/archsetjmp_64.h

File Facts

System
Linux kernel
Corpus path
arch/x86/um/shared/sysdep/archsetjmp_64.h
Extension
.h
Size
454 bytes
Lines
26
Domain
Architecture Layer
Bucket
arch/x86
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 __jmp_buf {
	unsigned long __rbx;
	unsigned long __rsp;
	unsigned long __rbp;
	unsigned long __r12;
	unsigned long __r13;
	unsigned long __r14;
	unsigned long __r15;
	unsigned long __rip;
};

typedef struct __jmp_buf jmp_buf[1];

#define JB_IP __rip
#define JB_SP __rsp

#endif				/* _SETJMP_H */

Annotation

Implementation Notes