/usr/include/hppa-linux-gnu/asm
NameSizeModeActions
auxvec.h1980644editdlrm
bitsperlong.h3020644editdlrm
bpf_perf_event.h400644editdlrm
byteorder.h1940644editdlrm
cachectl.h3540644editdlrm
errno.h56370644editdlrm
fcntl.h10240644editdlrm
ioctl.h17100644editdlrm
ioctls.h37560644editdlrm
ipcbuf.h8370644editdlrm
mman.h38810644editdlrm
msgbuf.h12460644editdlrm
param.h310644editdlrm
pdc.h250370644editdlrm
poll.h300644editdlrm
posix_types.h6390644editdlrm
ptrace.h28050644editdlrm
resource.h340644editdlrm
sembuf.h9080644editdlrm
setup.h1730644editdlrm
shmbuf.h14810644editdlrm
sigcontext.h5570644editdlrm
siginfo.h330644editdlrm
signal.h17690644editdlrm
socket.h41860644editdlrm
sockios.h330644editdlrm
stat.h18030644editdlrm
statfs.h1810644editdlrm
swab.h300644editdlrm
termbits.h36280644editdlrm
termios.h330644editdlrm
types.h310644editdlrm
unistd.h2770644editdlrm
unistd_32.h108740644editdlrm
unistd_64.h101410644editdlrm
Edit: /usr/lib/linux/uapi/parisc/asm/ioctl.h (1710B)
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ /* * Linux/PA-RISC Project (http://www.parisc-linux.org/) * Copyright (C) 1999,2003 Matthew Wilcox < willy at debian . org > * portions from "linux/ioctl.h for Linux" by H.H. Bergman. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _ASM_PARISC_IOCTL_H #define _ASM_PARISC_IOCTL_H /* ioctl command encoding: 32 bits total, command in lower 16 bits, * size of the parameter structure in the lower 14 bits of the * upper 16 bits. * Encoding the size of the parameter structure in the ioctl request * is useful for catching programs compiled with old versions * and to avoid overwriting user space outside the user buffer area. * The highest 2 bits are reserved for indicating the ``access mode''. * NOTE: This limits the max parameter size to 16kB -1 ! */ /* * Direction bits. */ #define _IOC_NONE 0U #define _IOC_WRITE 2U #define _IOC_READ 1U #include #endif /* _ASM_PARISC_IOCTL_H */