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

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

File Facts

System
Linux kernel
Corpus path
arch/x86/um/shared/sysdep/archsetjmp_32.h
Extension
.h
Size
402 bytes
Lines
24
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 int __ebx;
	unsigned int __esp;
	unsigned int __ebp;
	unsigned int __esi;
	unsigned int __edi;
	unsigned int __eip;
};

typedef struct __jmp_buf jmp_buf[1];

#define JB_IP __eip
#define JB_SP __esp

#endif				/* _SETJMP_H */

Annotation

Implementation Notes