arch/s390/include/uapi/asm/ptrace.h

Source file repositories/reference/linux-study-clean/arch/s390/include/uapi/asm/ptrace.h

File Facts

System
Linux kernel
Corpus path
arch/s390/include/uapi/asm/ptrace.h
Extension
.h
Size
8724 bytes
Lines
333
Domain
Architecture Layer
Bucket
arch/s390
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 user_regs_struct {
	psw_t psw;
	unsigned long gprs[NUM_GPRS];
	unsigned int  acrs[NUM_ACRS];
	unsigned long orig_gpr2;
	s390_fp_regs fp_regs;
	/*
	 * These per registers are in here so that gdb can modify them
	 * itself as there is no "official" ptrace interface for hardware
	 * watchpoints. This is the way intel does it.
	 */
	per_struct per_info;
	unsigned long ieee_instruction_pointer;	/* obsolete, always 0 */
};

#endif /* __ASSEMBLER__ */

#endif /* _UAPI_S390_PTRACE_H */

Annotation

Implementation Notes