]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/glibc/glibc-2.3.2/glibc23-mips-msq.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / glibc / glibc-2.3.2 / glibc23-mips-msq.patch
1 --- sysdeps/unix/sysv/linux/mips/bits/msq.h     26 Aug 2002 01:49:55 -0000      1.1
2 +++ sysdeps/unix/sysv/linux/mips/bits/msq.h     7 Oct 2003 18:30:30 -0000
3 @@ -38,16 +38,34 @@ typedef unsigned long int msglen_t;
4  struct msqid_ds
5  {
6    struct ipc_perm msg_perm;    /* structure describing operation permission */
7 +#if __WORDSIZE == 32 && defined (__MIPSEB__)
8 +  unsigned long int __unused1;
9 +#endif
10    __time_t msg_stime;          /* time of last msgsnd command */
11 +#if __WORDSIZE == 32 && defined (__MIPSEL__)
12 +  unsigned long int __unused1;
13 +#endif
14 +#if __WORDSIZE == 32 && defined (__MIPSEB__)
15 +  unsigned long int __unused2;
16 +#endif
17    __time_t msg_rtime;          /* time of last msgrcv command */
18 +#if __WORDSIZE == 32 && defined (__MIPSEL__)
19 +  unsigned long int __unused2;
20 +#endif
21 +#if __WORDSIZE == 32 && defined (__MIPSEB__)
22 +  unsigned long int __unused3;
23 +#endif
24    __time_t msg_ctime;          /* time of last change */
25 +#if __WORDSIZE == 32 && defined (__MIPSEL__)
26 +  unsigned long int __unused3;
27 +#endif
28    unsigned long int __msg_cbytes; /* current number of bytes on queue */
29    msgqnum_t msg_qnum;          /* number of messages currently on queue */
30    msglen_t msg_qbytes;         /* max number of bytes allowed on queue */
31    __pid_t msg_lspid;           /* pid of last msgsnd() */
32    __pid_t msg_lrpid;           /* pid of last msgrcv() */
33 -  unsigned long int __unused1;
34 -  unsigned long int __unused2;
35 +  unsigned long int __unused4;
36 +  unsigned long int __unused5;
37  };
38  
39  #ifdef __USE_MISC