arch/parisc/include/asm/rt_sigframe.h

Source file repositories/reference/linux-study-clean/arch/parisc/include/asm/rt_sigframe.h

File Facts

System
Linux kernel
Corpus path
arch/parisc/include/asm/rt_sigframe.h
Extension
.h
Size
410 bytes
Lines
17
Domain
Architecture Layer
Bucket
arch/parisc
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 rt_sigframe {
	unsigned int tramp[2]; /* holds original return address */
	struct siginfo info;
	struct ucontext uc;
};

#define	SIGFRAME		128
#define FUNCTIONCALLFRAME	96
#define PARISC_RT_SIGFRAME_SIZE					\
	(((sizeof(struct rt_sigframe) + FUNCTIONCALLFRAME) + SIGFRAME) & -SIGFRAME)

#endif

Annotation

Implementation Notes