mirror of git://sourceware.org/git/glibc.git
Update.
2003-05-28 Ulrich Drepper <drepper@redhat.com> * sysdeps/pthread/pthread_cond_broadcast.c (__pthread_cond_broadcast): Fix typo: MAX_INT -> INT_MAX.
This commit is contained in:
parent
2bcba929d2
commit
5a77f1501d
|
|
@ -1,3 +1,8 @@
|
||||||
|
2003-05-28 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pthread_cond_broadcast.c
|
||||||
|
(__pthread_cond_broadcast): Fix typo: MAX_INT -> INT_MAX.
|
||||||
|
|
||||||
2003-05-26 Ulrich Drepper <drepper@redhat.com>
|
2003-05-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Fix
|
* sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: Fix
|
||||||
|
|
|
||||||
|
|
@ -56,13 +56,13 @@ __pthread_cond_broadcast (cond)
|
||||||
|
|
||||||
/* Wake everybody. */
|
/* Wake everybody. */
|
||||||
pthread_mutex_t *mut = (pthread_mutex_t *) cond->__data.__mutex;
|
pthread_mutex_t *mut = (pthread_mutex_t *) cond->__data.__mutex;
|
||||||
if (__builtin_expect (lll_futex_requeue (futex, 1, MAX_INT,
|
if (__builtin_expect (lll_futex_requeue (futex, 1, INT_MAX,
|
||||||
&mut->__data.__lock) == -EINVAL,
|
&mut->__data.__lock) == -EINVAL,
|
||||||
0))
|
0))
|
||||||
{
|
{
|
||||||
/* The requeue functionality is not available. */
|
/* The requeue functionality is not available. */
|
||||||
#ifndef __ASSUME_FUTEX_REQUEUE
|
#ifndef __ASSUME_FUTEX_REQUEUE
|
||||||
lll_futex_wake (futex, MAX_INT);
|
lll_futex_wake (futex, INT_MAX);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue