sem.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA. */
  16. #include <errno.h>
  17. #include <sys/sem.h>
  18. #include <stddef.h>
  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. #include <stdlib.h>
  25. /* arg for semctl system calls. */
  26. union semun {
  27. int val; /* value for SETVAL */
  28. struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */
  29. unsigned short *array; /* array for GETALL & SETALL */
  30. struct seminfo *__buf; /* buffer for IPC_INFO */
  31. void *__pad;
  32. };
  33. #ifdef __NR_semctl
  34. #define __NR___semctl __NR_semctl
  35. static __inline__ _syscall4(int, __semctl, int, semid, int, semnum, int, cmd, void *, arg);
  36. #endif
  37. int semctl(int semid, int semnum, int cmd, ...)
  38. {
  39. union semun arg;
  40. va_list ap;
  41. /* Get the argument. */
  42. va_start (ap, cmd);
  43. arg = va_arg (ap, union semun);
  44. va_end (ap);
  45. #ifdef __NR_semctl
  46. return __semctl(semid, semnum, cmd | __IPC_64, arg.__pad);
  47. #else
  48. return __syscall_ipc(IPCOP_semctl, semid, semnum, cmd|__IPC_64, &arg, NULL);
  49. #endif
  50. }
  51. #endif
  52. #ifdef L_semget
  53. /* for definition of NULL */
  54. #include <stdlib.h>
  55. #ifdef __NR_semget
  56. _syscall3(int, semget, key_t, key, int, nsems, int, semflg);
  57. #else
  58. /* Return identifier for array of NSEMS semaphores associated
  59. * with KEY. */
  60. int semget (key_t key, int nsems, int semflg)
  61. {
  62. return __syscall_ipc(IPCOP_semget, key, nsems, semflg, NULL, 0);
  63. }
  64. #endif
  65. #endif
  66. #ifdef L_semop
  67. #ifdef __NR_semop
  68. _syscall3(int, semop, int, semid, struct sembuf *, sops, size_t, nsops);
  69. #else
  70. /* Perform user-defined atomical operation of array of semaphores. */
  71. int semop (int semid, struct sembuf *sops, size_t nsops)
  72. {
  73. return __syscall_ipc(IPCOP_semop, semid, (int) nsops, 0, sops, NULL);
  74. }
  75. #endif
  76. #endif
  77. #ifdef L_semtimedop
  78. #ifdef __NR_semtimedop
  79. _syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout);
  80. #else
  81. int semtimedop(int semid, struct sembuf *sops, size_t nsops,
  82. const struct timespec *timeout)
  83. {
  84. return __syscall_ipc(IPCOP_semtimedop, semid, nsops, 0, sops, timeout);
  85. }
  86. #endif
  87. #endif