Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	(__pthread_cond_signal): Use correct futex pointer in
	__lll_mutex_lock_wait call.

	* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
  • Loading branch information
Ulrich Drepper committed Jun 9, 2003
1 parent b172034 commit 5b318f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
2003-06-09 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
(__pthread_cond_signal): Use correct futex pointer in
__lll_mutex_lock_wait call.

* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
(__pthread_cond_signal): Some more tweaks to handle cond_lock!=0.

Expand Down
4 changes: 2 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ __pthread_cond_signal:
/* Initial locking failed. */
1:
#if cond_lock == 0
movl %ebx, %ecx
movl %edi, %ecx
#else
leal cond_lock(%ebx), %ecx
leal cond_lock(%edi), %ecx
#endif
call __lll_mutex_lock_wait
jmp 2b
Expand Down

0 comments on commit 5b318f8

Please sign in to comment.