/usr/include/sparc64-linux-gnu/asm
NameSizeModeActions
apc.h17450644editdlrm
asi.h153670644editdlrm
auxvec.h3480644editdlrm
bitsperlong.h3240644editdlrm
bpf_perf_event.h400644editdlrm
byteorder.h1910644editdlrm
display7seg.h19450644editdlrm
envctrl.h34940644editdlrm
errno.h55390644editdlrm
fbio.h78010644editdlrm
fcntl.h17900644editdlrm
ioctl.h26460644editdlrm
ioctls.h62200644editdlrm
ipcbuf.h8080644editdlrm
mman.h9930644editdlrm
msgbuf.h12180644editdlrm
openpromio.h21240644editdlrm
oradax.h20130644editdlrm
param.h2530644editdlrm
perfctr.h56950644editdlrm
poll.h2730644editdlrm
posix_types.h17680644editdlrm
psr.h22520644editdlrm
psrcompat.h20780644editdlrm
pstate.h64270644editdlrm
ptrace.h82070644editdlrm
resource.h7700644editdlrm
sembuf.h8960644editdlrm
setup.h2950644editdlrm
shmbuf.h14450644editdlrm
sigcontext.h1670644editdlrm
siginfo.h3750644editdlrm
signal.h46650644editdlrm
socket.h42650644editdlrm
sockios.h330644editdlrm
stat.h20540644editdlrm
statfs.h320644editdlrm
swab.h10460644editdlrm
termbits.h51180644editdlrm
termios.h10560644editdlrm
traps.h52560644editdlrm
types.h310644editdlrm
uctx.h14200644editdlrm
unistd.h8890644editdlrm
unistd_32.h118170644editdlrm
unistd_64.h106760644editdlrm
utrap.h15410644editdlrm
watchdog.h10290644editdlrm
Edit: /usr/lib/linux/uapi/sparc/asm/shmbuf.h (1445B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _SPARC_SHMBUF_H #define _SPARC_SHMBUF_H #include #include /* * The shmid64_ds structure for sparc 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 */ struct shmid64_ds { struct ipc64_perm shm_perm; /* operation perms */ #if defined(__sparc__) && defined(__arch64__) long shm_atime; /* last attach time */ long shm_dtime; /* last detach time */ long shm_ctime; /* last change time */ #else unsigned long shm_atime_high; unsigned long shm_atime; /* last attach time */ unsigned long shm_dtime_high; unsigned long shm_dtime; /* last detach time */ unsigned long shm_ctime_high; unsigned long shm_ctime; /* last change time */ #endif __kernel_size_t shm_segsz; /* size of segment (bytes) */ __kernel_pid_t shm_cpid; /* pid of creator */ __kernel_pid_t shm_lpid; /* pid of last operator */ unsigned long shm_nattch; /* no. of current attaches */ unsigned long __unused1; unsigned long __unused2; }; struct shminfo64 { unsigned long shmmax; unsigned long shmmin; unsigned long shmmni; unsigned long shmseg; unsigned long shmall; unsigned long __unused1; unsigned long __unused2; unsigned long __unused3; unsigned long __unused4; }; #endif /* _SPARC_SHMBUF_H */