/usr/include/alpha-linux-gnu/asm
NameSizeModeActions
a.out.h20370644editdlrm
auxvec.h7740644editdlrm
bitsperlong.h2370644editdlrm
bpf_perf_event.h400644editdlrm
byteorder.h1940644editdlrm
compiler.h36850644editdlrm
console.h11650644editdlrm
errno.h54340644editdlrm
fcntl.h19080644editdlrm
fpu.h46230644editdlrm
gentrap.h14620644editdlrm
ioctl.h23550644editdlrm
ioctls.h45040644editdlrm
ipcbuf.h320644editdlrm
mman.h38980644editdlrm
msgbuf.h320644editdlrm
pal.h10200644editdlrm
param.h2980644editdlrm
poll.h300644editdlrm
posix_types.h5130644editdlrm
ptrace.h17610644editdlrm
reg.h10050644editdlrm
regdef.h10670644editdlrm
resource.h7610644editdlrm
sembuf.h320644editdlrm
setup.h1720644editdlrm
shmbuf.h320644editdlrm
sigcontext.h8910644editdlrm
siginfo.h1550644editdlrm
signal.h24890644editdlrm
socket.h41660644editdlrm
sockios.h5050644editdlrm
stat.h10750644editdlrm
statfs.h3140644editdlrm
swab.h12340644editdlrm
sysinfo.h7750644editdlrm
termbits.h42430644editdlrm
termios.h15140644editdlrm
types.h8690644editdlrm
unistd.h5010644editdlrm
unistd_32.h136670644editdlrm
Edit: /usr/lib/linux/uapi/alpha/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