mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 06:50:07 +00:00
Update.
2004-06-28 Jakub Jelinek <jakub@redhat.com> * sysdeps/pthread/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock): Return EINVAL if tv_nsec is negative, instead of tv_sec. * sysdeps/pthread/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock): Likewise.
This commit is contained in:
parent
539842a4ea
commit
f3a1975474
@ -1,3 +1,11 @@
|
|||||||
|
2004-06-28 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pthread_rwlock_timedwrlock.c
|
||||||
|
(pthread_rwlock_timedwrlock): Return EINVAL if tv_nsec is negative,
|
||||||
|
instead of tv_sec.
|
||||||
|
* sysdeps/pthread/pthread_rwlock_timedrdlock.c
|
||||||
|
(pthread_rwlock_timedrdlock): Likewise.
|
||||||
|
|
||||||
2004-06-22 Jakub Jelinek <jakub@redhat.com>
|
2004-06-22 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/s390/lowlevellock.h (lll_futex_requeue):
|
* sysdeps/unix/sysv/linux/s390/lowlevellock.h (lll_futex_requeue):
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ pthread_rwlock_timedrdlock (rwlock, abstime)
|
|||||||
to the front is no option. Replicating all the code is
|
to the front is no option. Replicating all the code is
|
||||||
costly while this test is not. */
|
costly while this test is not. */
|
||||||
if (__builtin_expect (abstime->tv_nsec >= 1000000000
|
if (__builtin_expect (abstime->tv_nsec >= 1000000000
|
||||||
|| abstime->tv_sec < 0, 0))
|
|| abstime->tv_nsec < 0, 0))
|
||||||
{
|
{
|
||||||
result = EINVAL;
|
result = EINVAL;
|
||||||
break;
|
break;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ pthread_rwlock_timedwrlock (rwlock, abstime)
|
|||||||
to the front is no option. Replicating all the code is
|
to the front is no option. Replicating all the code is
|
||||||
costly while this test is not. */
|
costly while this test is not. */
|
||||||
if (__builtin_expect (abstime->tv_nsec >= 1000000000
|
if (__builtin_expect (abstime->tv_nsec >= 1000000000
|
||||||
|| abstime->tv_sec < 0, 0))
|
|| abstime->tv_nsec < 0, 0))
|
||||||
{
|
{
|
||||||
result = EINVAL;
|
result = EINVAL;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user