sem_trywait.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* sem_trywait -- 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. int
  23. __new_sem_trywait (sem_t *sem)
  24. {
  25. int *futex = (int *) sem;
  26. int val;
  27. if (*futex > 0)
  28. {
  29. val = atomic_decrement_if_positive (futex);
  30. if (val > 0)
  31. return 0;
  32. }
  33. __set_errno (EAGAIN);
  34. return -1;
  35. }
  36. weak_alias(__new_sem_trywait, sem_trywait)