1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-28 06:02:04 +00:00
Files
arch
arm
i386
microblaze
mips
or1k
powerpc
bits
alltypes.h.in
endian.h
errno.h
fcntl.h
fenv.h
float.h
io.h
ioctl.h
ipc.h
limits.h
mman.h
msg.h
posix.h
reg.h
resource.h
sem.h
setjmp.h
shm.h
signal.h
socket.h
stat.h
statfs.h
stdarg.h
stdint.h
syscall.h
termios.h
user.h
atomic.h
crt_arch.h
pthread_arch.h
reloc.h
syscall_arch.h
sh
x32
x86_64
crt
dist
include
lib
src
tools
.gitignore
COPYRIGHT
INSTALL
Makefile
README
VERSION
WHATSNEW
configure
musl/arch/powerpc/bits/msg.h

17 lines
287 B
C
Raw Normal View History

2012-11-09 23:32:57 +01:00
struct msqid_ds
{
struct ipc_perm msg_perm;
int __unused1;
time_t msg_stime;
2012-11-09 23:32:57 +01:00
int __unused2;
time_t msg_rtime;
2012-11-09 23:32:57 +01:00
int __unused3;
time_t msg_ctime;
2012-11-09 23:32:57 +01:00
unsigned long msg_cbytes;
msgqnum_t msg_qnum;
msglen_t msg_qbytes;
pid_t msg_lspid;
pid_t msg_lrpid;
unsigned long __unused[2];
};