2003-06-04  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
	(__pthread_cond_signal): Add some code to eventually handle
	cond_lock!=0.
This commit is contained in:
Ulrich Drepper 2003-06-04 19:48:29 +00:00
parent 1fb2614ae5
commit 29d9e2fd2c
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2003-06-04 Ulrich Drepper <drepper@redhat.com>
* 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 <drepper@redhat.com>
* Makefile (tests): Add tst-exec4.

View file

@ -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