sem_wait.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* sem_wait -- wait on a semaphore. Generic futex-using version.
  2. Copyright (C) 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #include <errno.h>
  18. #include <sysdep.h>
  19. #include <lowlevellock.h>
  20. #include <internaltypes.h>
  21. #include <semaphore.h>
  22. #include <pthreadP.h>
  23. int
  24. __new_sem_wait (sem_t *sem)
  25. {
  26. /* First check for cancellation. */
  27. CANCELLATION_P (THREAD_SELF);
  28. int *futex = (int *) sem;
  29. int err;
  30. do
  31. {
  32. if (atomic_decrement_if_positive (futex) > 0)
  33. return 0;
  34. /* Enable asynchronous cancellation. Required by the standard. */
  35. int oldtype = __pthread_enable_asynccancel ();
  36. err = lll_futex_wait (futex, 0);
  37. /* Disable asynchronous cancellation. */
  38. __pthread_disable_asynccancel (oldtype);
  39. }
  40. while (err == 0 || err == -EWOULDBLOCK);
  41. __set_errno (-err);
  42. return -1;
  43. }
  44. weak_alias(__new_sem_wait, sem_wait)