sem_post.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* sem_post -- post to a POSIX semaphore. Powerpc version.
  2. Copyright (C) 2003, 2004, 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. __new_sem_post (sem_t *sem)
  24. {
  25. struct new_sem *isem = (struct new_sem *) sem;
  26. __asm__ __volatile__ (__lll_rel_instr ::: "memory");
  27. atomic_increment (&isem->value);
  28. __asm__ __volatile__ (__lll_acq_instr ::: "memory");
  29. if (isem->nwaiters > 0)
  30. {
  31. int err = lll_futex_wake (&isem->value, 1,
  32. isem->private ^ FUTEX_PRIVATE_FLAG);
  33. if (__builtin_expect (err, 0) < 0)
  34. {
  35. __set_errno (-err);
  36. return -1;
  37. }
  38. }
  39. return 0;
  40. }
  41. weak_alias(__new_sem_post, sem_post)