diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-04-24 19:29:39 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-04-24 19:29:39 +0000 |
commit | 266ae826f8660d485daba069a921ec1ebc68a46d (patch) | |
tree | 1c68bece818c7a556824641c09fbc9ba8b6a7595 /libc/sysdeps/linux/powerpc/bits/msq.h | |
parent | 52b5a52b480f35928fccdff7298edf92736564ed (diff) |
Fix bug 222: Move all archs to newer __IPC_64 interface for {msg,sem,shm}ctl
syscalls. This won't work on 2.2 kernels(I think).
Diffstat (limited to 'libc/sysdeps/linux/powerpc/bits/msq.h')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/msq.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/msq.h b/libc/sysdeps/linux/powerpc/bits/msq.h index 654ee5bc2..45173a4cb 100644 --- a/libc/sysdeps/linux/powerpc/bits/msq.h +++ b/libc/sysdeps/linux/powerpc/bits/msq.h @@ -21,6 +21,7 @@ #endif #include <bits/types.h> +#include <bits/wordsize.h> /* Define options for message queue functions. */ #define MSG_NOERROR 010000 /* no error if message is too big */ @@ -38,11 +39,17 @@ typedef unsigned long int msglen_t; struct msqid_ds { struct ipc_perm msg_perm; /* structure describing operation permission */ +#if __WORDSIZE == 32 unsigned int __unused1; +#endif __time_t msg_stime; /* time of last msgsnd command */ +#if __WORDSIZE == 32 unsigned int __unused2; +#endif __time_t msg_rtime; /* time of last msgrcv command */ +#if __WORDSIZE == 32 unsigned int __unused3; +#endif __time_t msg_ctime; /* time of last change */ unsigned long __msg_cbytes; /* current number of bytes on queue */ msgqnum_t msg_qnum; /* number of messages currently on queue */ |