sembuf.h 746 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _ASM_M32R_SEMBUF_H
  2. #define _ASM_M32R_SEMBUF_H
  3. /* $Id$ */
  4. /* orig : i386 2.4.18 */
  5. /*
  6. * The semid64_ds structure for m32r architecture.
  7. * Note extra padding because this structure is passed back and forth
  8. * between kernel and user space.
  9. *
  10. * Pad space is left for:
  11. * - 64-bit time_t to solve y2038 problem
  12. * - 2 miscellaneous 32-bit values
  13. */
  14. struct semid64_ds {
  15. struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
  16. __kernel_time_t sem_otime; /* last semop time */
  17. unsigned long __unused1;
  18. __kernel_time_t sem_ctime; /* last change time */
  19. unsigned long __unused2;
  20. unsigned long sem_nsems; /* no. of semaphores in array */
  21. unsigned long __unused3;
  22. unsigned long __unused4;
  23. };
  24. #endif /* _ASM_M32R_SEMBUF_H */