/usr/src/linux-headers-5.15.0-190/arch/parisc/include/uapi/asm
NameSizeModeActions
bitsperlong.h3020644editdlrm
byteorder.h1940644editdlrm
errno.h56370644editdlrm
fcntl.h10240644editdlrm
ioctl.h17100644editdlrm
ioctls.h37520644editdlrm
ipcbuf.h8370644editdlrm
Kbuild890644editdlrm
mman.h37380644editdlrm
msgbuf.h12460644editdlrm
pdc.h235870644editdlrm
posix_types.h6390644editdlrm
ptrace.h28200644editdlrm
sembuf.h9080644editdlrm
setup.h1730644editdlrm
shmbuf.h14280644editdlrm
sigcontext.h5570644editdlrm
signal.h15540644editdlrm
socket.h38370644editdlrm
stat.h18030644editdlrm
statfs.h1810644editdlrm
termbits.h47840644editdlrm
termios.h11020644editdlrm
unistd.h2920644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/arch/parisc/include/uapi/asm/sigcontext.h (557B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASMPARISC_SIGCONTEXT_H #define _ASMPARISC_SIGCONTEXT_H #define PARISC_SC_FLAG_ONSTACK 1<<0 #define PARISC_SC_FLAG_IN_SYSCALL 1<<1 /* We will add more stuff here as it becomes necessary, until we know it works. */ struct sigcontext { unsigned long sc_flags; unsigned long sc_gr[32]; /* PSW in sc_gr[0] */ unsigned long long sc_fr[32]; /* FIXME, do we need other state info? */ unsigned long sc_iasq[2]; unsigned long sc_iaoq[2]; unsigned long sc_sar; /* cr11 */ }; #endif