sembuf.h 896 B

1234567891011121314151617181920212223242526272829303132
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _SPARC_SEMBUF_H
  3. #define _SPARC_SEMBUF_H
  4. #include <asm/ipcbuf.h>
  5. /*
  6. * The semid64_ds structure for sparc 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. * - 2 miscellaneous 32-bit values
  12. */
  13. struct semid64_ds {
  14. struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
  15. #if defined(__sparc__) && defined(__arch64__)
  16. long sem_otime; /* last semop time */
  17. long sem_ctime; /* last change time */
  18. #else
  19. unsigned long sem_otime_high;
  20. unsigned long sem_otime; /* last semop time */
  21. unsigned long sem_ctime_high;
  22. unsigned long sem_ctime; /* last change time */
  23. #endif
  24. unsigned long sem_nsems; /* no. of semaphores in array */
  25. unsigned long __unused1;
  26. unsigned long __unused2;
  27. };
  28. #endif /* _SPARC64_SEMBUF_H */