arch/alpha/include/asm/ucontext.h

Source file repositories/reference/linux-study-clean/arch/alpha/include/asm/ucontext.h

File Facts

System
Linux kernel
Corpus path
arch/alpha/include/asm/ucontext.h
Extension
.h
Size
348 bytes
Lines
15
Domain
Architecture Layer
Bucket
arch/alpha
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 ucontext {
	unsigned long	  uc_flags;
	struct ucontext  *uc_link;
	old_sigset_t	  uc_osf_sigmask;
	stack_t		  uc_stack;
	struct sigcontext uc_mcontext;
	sigset_t	  uc_sigmask;	/* mask last for extensibility */
};

#endif /* !_ASMAXP_UCONTEXT_H */

Annotation

Implementation Notes