/usr/src/linux-headers-5.15.0-190/arch/x86/include/uapi/asm
NameSizeModeActions
a.out.h7560644editdlrm
auxvec.h5460644editdlrm
bitsperlong.h3210644editdlrm
boot.h3380644editdlrm
bootparam.h82330644editdlrm
byteorder.h2000644editdlrm
debugreg.h33440644editdlrm
e820.h26200644editdlrm
hwcap2.h3240644editdlrm
hw_breakpoint.h690644editdlrm
ist.h8690644editdlrm
Kbuild1170644editdlrm
kvm.h108580644editdlrm
kvm_para.h43150644editdlrm
kvm_perf.h3880644editdlrm
ldt.h13060644editdlrm
mce.h17450644editdlrm
mman.h10020644editdlrm
msgbuf.h10790644editdlrm
msr.h3610644editdlrm
mtrr.h42400644editdlrm
perf_regs.h14030644editdlrm
posix_types.h2500644editdlrm
posix_types_32.h7650644editdlrm
posix_types_64.h6090644editdlrm
posix_types_x32.h5810644editdlrm
prctl.h5240644editdlrm
processor-flags.h66380644editdlrm
ptrace-abi.h20370644editdlrm
ptrace.h16300644editdlrm
sembuf.h10700644editdlrm
setup.h60644editdlrm
sgx.h59350644editdlrm
shmbuf.h12580644editdlrm
sigcontext.h99500644editdlrm
sigcontext32.h2710644editdlrm
siginfo.h4220644editdlrm
signal.h22000644editdlrm
stat.h31310644editdlrm
statfs.h4160644editdlrm
svm.h89170644editdlrm
swab.h7690644editdlrm
ucontext.h21170644editdlrm
unistd.h6640644editdlrm
vm86.h32010644editdlrm
vmx.h73830644editdlrm
vsyscall.h2780644editdlrm
Edit: /usr/src/linux-headers-5.15.0-190/arch/x86/include/uapi/asm/sembuf.h (1070B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_X86_SEMBUF_H #define _ASM_X86_SEMBUF_H #include /* * The semid64_ds structure for x86 architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * Pad space is left for: * - 2 miscellaneous 32-bit values * * x86_64 and x32 incorrectly added padding here, so the structures * are still incompatible with the padding on x86. */ struct semid64_ds { struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ #ifdef __i386__ unsigned long sem_otime; /* last semop time */ unsigned long sem_otime_high; unsigned long sem_ctime; /* last change time */ unsigned long sem_ctime_high; #else __kernel_long_t sem_otime; /* last semop time */ __kernel_ulong_t __unused1; __kernel_long_t sem_ctime; /* last change time */ __kernel_ulong_t __unused2; #endif __kernel_ulong_t sem_nsems; /* no. of semaphores in array */ __kernel_ulong_t __unused3; __kernel_ulong_t __unused4; }; #endif /* _ASM_X86_SEMBUF_H */