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

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

File Facts

System
Linux kernel
Corpus path
arch/x86/um/shared/sysdep/archsetjmp.h
Extension
.h
Size
294 bytes
Lines
14
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

#ifndef __X86_UM_SYSDEP_ARCHSETJMP_H
#define __X86_UM_SYSDEP_ARCHSETJMP_H

#ifdef __i386__
#include "archsetjmp_32.h"
#else
#include "archsetjmp_64.h"
#endif

unsigned long get_thread_reg(int reg, jmp_buf *buf);

#endif /* __X86_UM_SYSDEP_ARCHSETJMP_H */

Annotation

Implementation Notes