sem_post.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* sem_post -- post to a POSIX semaphore. Generic futex-using version.
  2. Copyright (C) 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Jakub Jelinek <jakub@redhat.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 <tls.h>
  23. int
  24. __new_sem_post (sem_t *sem)
  25. {
  26. struct new_sem *isem = (struct new_sem *) sem;
  27. __typeof (isem->value) cur;
  28. do
  29. {
  30. cur = isem->value;
  31. if (isem->value == SEM_VALUE_MAX)
  32. {
  33. __set_errno (EOVERFLOW);
  34. return -1;
  35. }
  36. }
  37. while (atomic_compare_and_exchange_bool_acq (&isem->value, cur + 1, cur));
  38. atomic_full_barrier ();
  39. if (isem->nwaiters > 0)
  40. {
  41. int err = lll_futex_wake (&isem->value, 1,
  42. isem->private ^ FUTEX_PRIVATE_FLAG);
  43. if (__builtin_expect (err, 0) < 0)
  44. {
  45. __set_errno (-err);
  46. return -1;
  47. }
  48. }
  49. return 0;
  50. }
  51. weak_alias(__new_sem_post, sem_post)