Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix i386 build for lll_unlock_elision change.
Tested for i386.

	* sysdeps/unix/sysv/linux/i386/lowlevellock.h
	(lll_unlock_elision): Add adapt_count parameter.
  • Loading branch information
Joseph Myers committed Oct 16, 2015
1 parent 15306e3 commit 5ef1933
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2015-10-16 Joseph Myers <joseph@codesourcery.com>

* sysdeps/unix/sysv/linux/i386/lowlevellock.h
(lll_unlock_elision): Add adapt_count parameter.

2015-10-15 Joseph Myers <joseph@codesourcery.com>

* sysdeps/nptl/configure.ac: Do not give errors based on the
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/i386/lowlevellock.h
Expand Up @@ -317,7 +317,7 @@ extern int __lll_trylock_elision(int *lock, short *adapt_count)

#define lll_lock_elision(futex, adapt_count, private) \
__lll_lock_elision (&(futex), &(adapt_count), private)
#define lll_unlock_elision(futex, private) \
#define lll_unlock_elision(futex, adapt_count, private) \
__lll_unlock_elision (&(futex), private)
#define lll_trylock_elision(futex, adapt_count) \
__lll_trylock_elision(&(futex), &(adapt_count))
Expand Down

0 comments on commit 5ef1933

Please sign in to comment.