pthread_cond_timedwait.c 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <endian.h>
  17. #include <errno.h>
  18. #include <sysdep.h>
  19. #include <lowlevellock.h>
  20. #include <pthread.h>
  21. #include <pthreadP.h>
  22. /* Cleanup handler, defined in pthread_cond_wait.c. */
  23. extern void __condvar_cleanup (void *arg)
  24. __attribute__ ((visibility ("hidden")));
  25. struct _condvar_cleanup_buffer
  26. {
  27. int oldtype;
  28. pthread_cond_t *cond;
  29. pthread_mutex_t *mutex;
  30. unsigned int bc_seq;
  31. };
  32. int
  33. __pthread_cond_timedwait (cond, mutex, abstime)
  34. pthread_cond_t *cond;
  35. pthread_mutex_t *mutex;
  36. const struct timespec *abstime;
  37. {
  38. struct _pthread_cleanup_buffer buffer;
  39. struct _condvar_cleanup_buffer cbuffer;
  40. int result = 0;
  41. /* Catch invalid parameters. */
  42. if (abstime->tv_nsec < 0 || abstime->tv_nsec >= 1000000000)
  43. return EINVAL;
  44. /* Make sure we are along. */
  45. lll_mutex_lock (cond->__data.__lock);
  46. /* Now we can release the mutex. */
  47. int err = __pthread_mutex_unlock_usercnt (mutex, 0);
  48. if (err)
  49. {
  50. lll_mutex_unlock (cond->__data.__lock);
  51. return err;
  52. }
  53. /* We have one new user of the condvar. */
  54. ++cond->__data.__total_seq;
  55. ++cond->__data.__futex;
  56. cond->__data.__nwaiters += 1 << COND_CLOCK_BITS;
  57. /* Remember the mutex we are using here. If there is already a
  58. different address store this is a bad user bug. Do not store
  59. anything for pshared condvars. */
  60. if (cond->__data.__mutex != (void *) ~0l)
  61. cond->__data.__mutex = mutex;
  62. /* Prepare structure passed to cancellation handler. */
  63. cbuffer.cond = cond;
  64. cbuffer.mutex = mutex;
  65. /* Before we block we enable cancellation. Therefore we have to
  66. install a cancellation handler. */
  67. __pthread_cleanup_push (&buffer, __condvar_cleanup, &cbuffer);
  68. /* The current values of the wakeup counter. The "woken" counter
  69. must exceed this value. */
  70. unsigned long long int val;
  71. unsigned long long int seq;
  72. val = seq = cond->__data.__wakeup_seq;
  73. /* Remember the broadcast counter. */
  74. cbuffer.bc_seq = cond->__data.__broadcast_seq;
  75. while (1)
  76. {
  77. struct timespec rt;
  78. {
  79. #ifdef __NR_clock_gettime
  80. INTERNAL_SYSCALL_DECL (err);
  81. int ret;
  82. ret = INTERNAL_SYSCALL (clock_gettime, err, 2,
  83. (cond->__data.__nwaiters
  84. & ((1 << COND_CLOCK_BITS) - 1)),
  85. &rt);
  86. # ifndef __ASSUME_POSIX_TIMERS
  87. if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (ret, err), 0))
  88. {
  89. struct timeval tv;
  90. (void) gettimeofday (&tv, NULL);
  91. /* Convert the absolute timeout value to a relative timeout. */
  92. rt.tv_sec = abstime->tv_sec - tv.tv_sec;
  93. rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
  94. }
  95. else
  96. # endif
  97. {
  98. /* Convert the absolute timeout value to a relative timeout. */
  99. rt.tv_sec = abstime->tv_sec - rt.tv_sec;
  100. rt.tv_nsec = abstime->tv_nsec - rt.tv_nsec;
  101. }
  102. #else
  103. /* Get the current time. So far we support only one clock. */
  104. struct timeval tv;
  105. (void) gettimeofday (&tv, NULL);
  106. /* Convert the absolute timeout value to a relative timeout. */
  107. rt.tv_sec = abstime->tv_sec - tv.tv_sec;
  108. rt.tv_nsec = abstime->tv_nsec - tv.tv_usec * 1000;
  109. #endif
  110. }
  111. if (rt.tv_nsec < 0)
  112. {
  113. rt.tv_nsec += 1000000000;
  114. --rt.tv_sec;
  115. }
  116. /* Did we already time out? */
  117. if (__builtin_expect (rt.tv_sec < 0, 0))
  118. {
  119. if (cbuffer.bc_seq != cond->__data.__broadcast_seq)
  120. goto bc_out;
  121. goto timeout;
  122. }
  123. unsigned int futex_val = cond->__data.__futex;
  124. /* Prepare to wait. Release the condvar futex. */
  125. lll_mutex_unlock (cond->__data.__lock);
  126. /* Enable asynchronous cancellation. Required by the standard. */
  127. cbuffer.oldtype = __pthread_enable_asynccancel ();
  128. /* Wait until woken by signal or broadcast. */
  129. err = lll_futex_timed_wait (&cond->__data.__futex,
  130. futex_val, &rt);
  131. /* Disable asynchronous cancellation. */
  132. __pthread_disable_asynccancel (cbuffer.oldtype);
  133. /* We are going to look at shared data again, so get the lock. */
  134. lll_mutex_lock(cond->__data.__lock);
  135. /* If a broadcast happened, we are done. */
  136. if (cbuffer.bc_seq != cond->__data.__broadcast_seq)
  137. goto bc_out;
  138. /* Check whether we are eligible for wakeup. */
  139. val = cond->__data.__wakeup_seq;
  140. if (val != seq && cond->__data.__woken_seq != val)
  141. break;
  142. /* Not woken yet. Maybe the time expired? */
  143. if (__builtin_expect (err == -ETIMEDOUT, 0))
  144. {
  145. timeout:
  146. /* Yep. Adjust the counters. */
  147. ++cond->__data.__wakeup_seq;
  148. ++cond->__data.__futex;
  149. /* The error value. */
  150. result = ETIMEDOUT;
  151. break;
  152. }
  153. }
  154. /* Another thread woken up. */
  155. ++cond->__data.__woken_seq;
  156. bc_out:
  157. cond->__data.__nwaiters -= 1 << COND_CLOCK_BITS;
  158. /* If pthread_cond_destroy was called on this variable already,
  159. notify the pthread_cond_destroy caller all waiters have left
  160. and it can be successfully destroyed. */
  161. if (cond->__data.__total_seq == -1ULL
  162. && cond->__data.__nwaiters < (1 << COND_CLOCK_BITS))
  163. lll_futex_wake (&cond->__data.__nwaiters, 1);
  164. /* We are done with the condvar. */
  165. lll_mutex_unlock (cond->__data.__lock);
  166. /* The cancellation handling is back to normal, remove the handler. */
  167. __pthread_cleanup_pop (&buffer, 0);
  168. /* Get the mutex before returning. */
  169. err = __pthread_mutex_cond_lock (mutex);
  170. return err ?: result;
  171. }
  172. weak_alias(__pthread_cond_timedwait, pthread_cond_timedwait)