sem.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB. If not,
  14. see <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <sys/sem.h>
  17. #include <stddef.h>
  18. #include <stdlib.h> /* for NULL */
  19. #include "ipc.h"
  20. #ifdef L_semctl
  21. /* Return identifier for array of NSEMS semaphores associated with
  22. KEY. */
  23. #include <stdarg.h>
  24. /* arg for semctl system calls. */
  25. union semun {
  26. int val; /* value for SETVAL */
  27. struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */
  28. unsigned short *array; /* array for GETALL & SETALL */
  29. struct seminfo *__buf; /* buffer for IPC_INFO */
  30. void *__pad;
  31. };
  32. #ifdef __NR_semctl
  33. #define __NR___semctl __NR_semctl
  34. static __inline__ _syscall4(int, __semctl, int, semid, int, semnum, int, cmd, void *, arg)
  35. #endif
  36. int semctl(int semid, int semnum, int cmd, ...)
  37. {
  38. union semun arg;
  39. va_list ap;
  40. /* Get the argument. */
  41. va_start (ap, cmd);
  42. arg = va_arg (ap, union semun);
  43. va_end (ap);
  44. #ifdef __NR_semctl
  45. int __ret = __semctl(semid, semnum, cmd | __IPC_64, arg.__pad);
  46. #if defined(__UCLIBC_USE_TIME64__)
  47. arg.buf->sem_otime = (__time_t)arg.buf->__sem_otime_internal_1 | (__time_t)(arg.buf->__sem_otime_internal_2) << 32;
  48. arg.buf->sem_ctime = (__time_t)arg.buf->__sem_ctime_internal_1 | (__time_t)(arg.buf->__sem_ctime_internal_2) << 32;
  49. #endif
  50. return __ret;
  51. #else
  52. return __syscall_ipc(IPCOP_semctl, semid, semnum, cmd|__IPC_64, &arg, NULL);
  53. #endif
  54. }
  55. #endif
  56. #ifdef L_semget
  57. #ifdef __NR_semget
  58. _syscall3(int, semget, key_t, key, int, nsems, int, semflg)
  59. #else
  60. /* Return identifier for array of NSEMS semaphores associated
  61. * with KEY. */
  62. int semget (key_t key, int nsems, int semflg)
  63. {
  64. return __syscall_ipc(IPCOP_semget, key, nsems, semflg, NULL, 0);
  65. }
  66. #endif
  67. #endif
  68. #ifdef L_semop
  69. #ifdef __NR_semop
  70. _syscall3(int, semop, int, semid, struct sembuf *, sops, size_t, nsops)
  71. #else
  72. /* Perform user-defined atomical operation of array of semaphores. */
  73. int semop (int semid, struct sembuf *sops, size_t nsops)
  74. {
  75. return __syscall_ipc(IPCOP_semop, semid, (int) nsops, 0, sops, NULL);
  76. }
  77. #endif
  78. #endif
  79. #ifdef L_semtimedop
  80. #if defined(__UCLIBC_USE_TIME64__) && defined(__NR_semtimedop_time64)
  81. _syscall4_time64(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout)
  82. #elif defined(__NR_semtimedop)
  83. _syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout)
  84. #else
  85. int semtimedop(int semid, struct sembuf *sops, size_t nsops,
  86. const struct timespec *timeout)
  87. {
  88. return __syscall_ipc(IPCOP_semtimedop, semid, nsops, 0, sops, (void *) timeout);
  89. }
  90. #endif
  91. #endif