diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-13 23:30:40 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-13 23:30:40 +0000 |
commit | 70d9946a44ba381f81eb08c71cc150315cc112ad (patch) | |
tree | b354421eb394cee78cb16fd35812fb864c481ab8 /sysdeps/gnu | |
parent | ffb1ec7b7ff1c65523b6926fc3afbacdb94db356 (diff) | |
download | glibc-70d9946a44ba381f81eb08c71cc150315cc112ad.zip glibc-70d9946a44ba381f81eb08c71cc150315cc112ad.tar.gz glibc-70d9946a44ba381f81eb08c71cc150315cc112ad.tar.bz2 |
Remove __ptrvalue, __bounded and __unbounded.
Diffstat (limited to 'sysdeps/gnu')
-rw-r--r-- | sysdeps/gnu/bits/msq.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/gnu/bits/msq.h b/sysdeps/gnu/bits/msq.h index 33f16a5..ca70acd 100644 --- a/sysdeps/gnu/bits/msq.h +++ b/sysdeps/gnu/bits/msq.h @@ -38,13 +38,13 @@ typedef unsigned short int msglen_t; struct msqid_ds { struct ipc_perm msg_perm; /* structure describing operation permission */ - struct msg *__unbounded __msg_first; /* pointer to first message on queue */ - struct msg *__unbounded __msg_last; /* pointer to last message on queue */ + struct msg *__msg_first; /* pointer to first message on queue */ + struct msg *__msg_last; /* pointer to last message on queue */ __time_t msg_stime; /* time of last msgsnd command */ __time_t msg_rtime; /* time of last msgrcv command */ __time_t msg_ctime; /* time of last change */ - struct wait_queue *__unbounded __wwait; /* ??? */ - struct wait_queue *__unbounded __rwait; /* ??? */ + struct wait_queue *__wwait; /* ??? */ + struct wait_queue *__rwait; /* ??? */ unsigned short int __msg_cbytes;/* current number of bytes on queue */ msgqnum_t msg_qnum; /* number of messages currently on queue */ msglen_t msg_qbytes; /* max number of bytes allowed on queue */ |