From: Ulrich Drepper Date: Fri, 30 May 2003 17:50:29 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~668 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ab7ea333d4d8274ecada374923209efa13bb900;p=thirdparty%2Fglibc.git Update. * tst-rwlock6.c (do_test): Use correct format specifier. * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S (__lll_mutex_lock_wait): Replace one memory operation with one register operation. * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S (__lll_mutex_lock_wait): Likewise. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 44c6ca908eb..fbe077ae2bf 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,13 @@ 2003-05-30 Ulrich Drepper + * tst-rwlock6.c (do_test): Use correct format specifier. + + * sysdeps/unix/sysv/linux/i386/i486/lowlevelmutex.S + (__lll_mutex_lock_wait): Replace one memory operation with one + register operation. + * sysdeps/unix/sysv/linux/x86_64/lowlevelmutex.S + (__lll_mutex_lock_wait): Likewise. + * sysdeps/unix/sysv/linux/ia64/lowlevellock.h (__lll_mutex_cond_lock): Add one to value parameter of __lll_lock_wait to reflect reality in the futex syscall. diff --git a/nptl/tst-rwlock6.c b/nptl/tst-rwlock6.c index af2c2119c78..3b525b9d5d5 100644 --- a/nptl/tst-rwlock6.c +++ b/nptl/tst-rwlock6.c @@ -206,7 +206,7 @@ do_test (void) } if (status != NULL) { - printf ("failure in round %d\n", cnt); + printf ("failure in round %Zu\n", cnt); exit (1); }