sem_trywait.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* sem_trywait -- wait on a semaphore. SPARC version.
  2. Copyright (C) 2003, 2006, 2007 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. sem_trywait (sem_t *sem)
  24. {
  25. struct sparc_old_sem *isem = (struct sparc_old_sem *) sem;
  26. int val;
  27. if (isem->value > 0)
  28. {
  29. if (__atomic_is_v9)
  30. val = atomic_decrement_if_positive (&isem->value);
  31. else
  32. {
  33. __sparc32_atomic_do_lock24 (&isem->lock);
  34. val = isem->value;
  35. if (val > 0)
  36. isem->value = val - 1;
  37. __sparc32_atomic_do_unlock24 (&isem->lock);
  38. }
  39. if (val > 0)
  40. return 0;
  41. }
  42. __set_errno (EAGAIN);
  43. return -1;
  44. }