msgbuf.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #ifndef __ASM_GENERIC_MSGBUF_H
  2. #define __ASM_GENERIC_MSGBUF_H
  3. #include <asm/bitsperlong.h>
  4. /*
  5. * generic msqid64_ds structure.
  6. *
  7. * Note extra padding because this structure is passed back and forth
  8. * between kernel and user space.
  9. *
  10. * msqid64_ds was originally meant to be architecture specific, but
  11. * everyone just ended up making identical copies without specific
  12. * optimizations, so we may just as well all use the same one.
  13. *
  14. * 64 bit architectures typically define a 64 bit __kernel_time_t,
  15. * so they do not need the first three padding words.
  16. * On big-endian systems, the padding is in the wrong place.
  17. *
  18. * Pad space is left for:
  19. * - 64-bit time_t to solve y2038 problem
  20. * - 2 miscellaneous 32-bit values
  21. */
  22. struct msqid64_ds {
  23. struct ipc64_perm msg_perm;
  24. __kernel_time_t msg_stime; /* last msgsnd time */
  25. #if __BITS_PER_LONG != 64
  26. unsigned long __unused1;
  27. #endif
  28. __kernel_time_t msg_rtime; /* last msgrcv time */
  29. #if __BITS_PER_LONG != 64
  30. unsigned long __unused2;
  31. #endif
  32. __kernel_time_t msg_ctime; /* last change time */
  33. #if __BITS_PER_LONG != 64
  34. unsigned long __unused3;
  35. #endif
  36. __kernel_ulong_t msg_cbytes; /* current number of bytes on queue */
  37. __kernel_ulong_t msg_qnum; /* number of messages in queue */
  38. __kernel_ulong_t msg_qbytes; /* max number of bytes on queue */
  39. __kernel_pid_t msg_lspid; /* pid of last msgsnd */
  40. __kernel_pid_t msg_lrpid; /* last receive pid */
  41. __kernel_ulong_t __unused4;
  42. __kernel_ulong_t __unused5;
  43. };
  44. #endif /* __ASM_GENERIC_MSGBUF_H */