Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Ulrich Drepper committed Jun 4, 2003
1 parent 1fb2614 commit 29d9e2f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 4 additions & 0 deletions nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 29d9e2f

Please sign in to comment.