arch/arm64/include/uapi/asm/ucontext.h

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

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/uapi/asm/ucontext.h
Extension
.h
Size
1081 bytes
Lines
34
Domain
Architecture Layer
Bucket
arch/arm64
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;
	stack_t		  uc_stack;
	sigset_t	  uc_sigmask;
	/* glibc uses a 1024-bit sigset_t */
	__u8		  __unused[1024 / 8 - sizeof(sigset_t)];
	/* last for future expansion */
	struct sigcontext uc_mcontext;
};

#endif /* _UAPI__ASM_UCONTEXT_H */

Annotation

Implementation Notes