From 29d9e2fd2c19b758998a65ade92180d03fed4cae Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 4 Jun 2003 19:48:29 +0000 Subject: Update. 2003-06-04 Ulrich Drepper * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S (__pthread_cond_signal): Add some code to eventually handle cond_lock!=0. --- nptl/ChangeLog | 6 ++++++ nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S | 4 ++++ 2 files changed, 10 insertions(+) (limited to 'nptl') diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 61e87c31f0..5b88e6da34 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,9 @@ +2003-06-04 Ulrich Drepper + + * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S + (__pthread_cond_signal): Add some code to eventually handle + cond_lock!=0. + 2003-06-01 Ulrich Drepper * Makefile (tests): Add tst-exec4. diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S index ed25c554d2..4b4fc051cb 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S @@ -92,7 +92,11 @@ __pthread_cond_signal: /* Unlock. */ 4: LOCK +#if cond_lock == 0 subl $1, (%edi) +#else + subl $1, cond_lock(%edi) +#endif jne 5f 6: xorl %eax, %eax -- cgit v1.2.3