arch/xtensa/include/uapi/asm/sigcontext.h

Source file repositories/reference/linux-study-clean/arch/xtensa/include/uapi/asm/sigcontext.h

File Facts

System
Linux kernel
Corpus path
arch/xtensa/include/uapi/asm/sigcontext.h
Extension
.h
Size
681 bytes
Lines
30
Domain
Architecture Layer
Bucket
arch/xtensa
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 sigcontext {
	unsigned long sc_pc;
	unsigned long sc_ps;
	unsigned long sc_lbeg;
	unsigned long sc_lend;
	unsigned long sc_lcount;
	unsigned long sc_sar;
	unsigned long sc_acclo;
	unsigned long sc_acchi;
	unsigned long sc_a[16];
	void *sc_xtregs;
};

#endif /* _XTENSA_SIGCONTEXT_H */

Annotation

Implementation Notes