OSDN Git Service

Merge remote branch 'origin/master' into nptl_merge
[uclinux-h8/uClibc.git] / libpthread / nptl / sysdeps / pthread / pthread_cond_broadcast.c
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
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
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <endian.h>
21 #include <errno.h>
22 #include <sysdep.h>
23 #include <lowlevellock.h>
24 #include <pthread.h>
25 #include <pthreadP.h>
26 #include <bits/kernel-features.h>
27
28
29 int
30 __pthread_cond_broadcast (cond)
31      pthread_cond_t *cond;
32 {
33   /* Make sure we are alone.  */
34   lll_mutex_lock (cond->__data.__lock);
35
36   /* Are there any waiters to be woken?  */
37   if (cond->__data.__total_seq > cond->__data.__wakeup_seq)
38     {
39       /* Yes.  Mark them all as woken.  */
40       cond->__data.__wakeup_seq = cond->__data.__total_seq;
41       cond->__data.__woken_seq = cond->__data.__total_seq;
42       cond->__data.__futex = (unsigned int) cond->__data.__total_seq * 2;
43       int futex_val = cond->__data.__futex;
44       /* Signal that a broadcast happened.  */
45       ++cond->__data.__broadcast_seq;
46
47       /* We are done.  */
48       lll_mutex_unlock (cond->__data.__lock);
49
50       /* Do not use requeue for pshared condvars.  */
51       if (cond->__data.__mutex == (void *) ~0l)
52         goto wake_all;
53
54       /* Wake everybody.  */
55       pthread_mutex_t *mut = (pthread_mutex_t *) cond->__data.__mutex;
56       /* lll_futex_requeue returns 0 for success and non-zero
57          for errors.  */
58       if (__builtin_expect (lll_futex_requeue (&cond->__data.__futex, 1,
59                                                INT_MAX, &mut->__data.__lock,
60                                                futex_val), 0))
61         {
62           /* The requeue functionality is not available.  */
63         wake_all:
64           lll_futex_wake (&cond->__data.__futex, INT_MAX);
65         }
66
67       /* That's all.  */
68       return 0;
69     }
70
71   /* We are done.  */
72   lll_mutex_unlock (cond->__data.__lock);
73
74   return 0;
75 }
76 weak_alias(__pthread_cond_broadcast, pthread_cond_broadcast)