1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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.
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.
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
21 #include <shlib-compat.h>
22 #include <lowlevelcond.h>
37 /* int pthread_cond_broadcast (pthread_cond_t *cond) */
38 .globl __pthread_cond_broadcast
39 .type __pthread_cond_broadcast, @function
41 __pthread_cond_broadcast:
48 /* Get internal lock. */
54 xaddl %eax, cond_lock(%ebx)
59 2: movl total_seq+4(%ebx), %eax
60 movl total_seq(%ebx), %ecx
61 cmpl wakeup_seq+4(%ebx), %eax
64 cmpl wakeup_seq(%ebx), %ecx
67 /* Case all currently waiting threads to wake up. */
68 3: movl %ecx, wakeup_seq(%ebx)
69 movl %eax, wakeup_seq+4(%ebx)
71 /* Wake up all threads. */
72 addl $wakeup_seq, %ebx
73 movl $FUTEX_WAKE, %ecx
76 movl $0x7fffffff, %edx
81 decl cond_lock-wakeup_seq(%ebx)
89 /* Initial locking failed. */
94 leal cond_lock(%ebx), %ecx
96 call __lll_mutex_lock_wait
99 /* Unlock in loop requires waekup. */
101 leal cond_lock-wakeup_seq(%ebx), %eax
102 call __lll_mutex_unlock_wake
104 .size __pthread_cond_broadcast, .-__pthread_cond_broadcast
105 versioned_symbol (libpthread, __pthread_cond_broadcast, pthread_cond_broadcast,