/usr/src/linux-headers-5.15.0-190/arch/alpha/include/uapi/asm
NameSizeModeActions
a.out.h20520644editdlrm
auxvec.h7740644editdlrm
bitsperlong.h2370644editdlrm
byteorder.h1940644editdlrm
compiler.h42200644editdlrm
console.h11800644editdlrm
errno.h54340644editdlrm
fcntl.h19080644editdlrm
fpu.h46300644editdlrm
gentrap.h14620644editdlrm
ioctl.h23550644editdlrm
ioctls.h45000644editdlrm
Kbuild620644editdlrm
mman.h37550644editdlrm
pal.h10350644editdlrm
param.h3130644editdlrm
posix_types.h5130644editdlrm
ptrace.h17760644editdlrm
reg.h10050644editdlrm
regdef.h10670644editdlrm
resource.h7610644editdlrm
setup.h1870644editdlrm
sigcontext.h8910644editdlrm
siginfo.h1550644editdlrm
signal.h25950644editdlrm
socket.h39120644editdlrm
sockios.h5050644editdlrm
stat.h10750644editdlrm
statfs.h3140644editdlrm
swab.h12760644editdlrm
sysinfo.h7750644editdlrm
termbits.h53130644editdlrm
termios.h15290644editdlrm
types.h8840644editdlrm
unistd.h5160644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/arch/alpha/include/uapi/asm/sigcontext.h (891B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASMAXP_SIGCONTEXT_H #define _ASMAXP_SIGCONTEXT_H struct sigcontext { /* * What should we have here? I'd probably better use the same * stack layout as OSF/1, just in case we ever want to try * running their binaries.. * * This is the basic layout, but I don't know if we'll ever * actually fill in all the values.. */ long sc_onstack; long sc_mask; long sc_pc; long sc_ps; long sc_regs[32]; long sc_ownedfp; long sc_fpregs[32]; unsigned long sc_fpcr; unsigned long sc_fp_control; unsigned long sc_reserved1, sc_reserved2; unsigned long sc_ssize; char * sc_sbase; unsigned long sc_traparg_a0; unsigned long sc_traparg_a1; unsigned long sc_traparg_a2; unsigned long sc_fp_trap_pc; unsigned long sc_fp_trigger_sum; unsigned long sc_fp_trigger_inst; }; #endif