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: addl $wakeup_seq, %ebx
60 movl total_seq+4-wakeup_seq(%ebx), %eax
61 movl total_seq-wakeup_seq(%ebx), %ecx
68 /* Cause all currently waiting threads to recognize they are
75 decl cond_lock-wakeup_seq(%ebx)
78 /* Wake up all threads. */
79 8: movl $FUTEX_WAKE, %ecx
82 movl $0x7fffffff, %edx
93 decl cond_lock-wakeup_seq(%ebx)
101 /* Initial locking failed. */
106 leal cond_lock(%ebx), %ecx
108 call __lll_mutex_lock_wait
111 /* Unlock in loop requires waekup. */
112 5: leal cond_lock-wakeup_seq(%ebx), %eax
113 call __lll_mutex_unlock_wake
116 /* Unlock in loop requires waekup. */
117 7: leal cond_lock-wakeup_seq(%ebx), %eax
118 call __lll_mutex_unlock_wake
120 .size __pthread_cond_broadcast, .-__pthread_cond_broadcast
121 versioned_symbol (libpthread, __pthread_cond_broadcast, pthread_cond_broadcast,