projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3f2979
)
use the internal macro name FUTEX_PRIVATE in __wait
author
Szabolcs Nagy
<nsz@port70.net>
Mon, 9 Feb 2015 21:11:52 +0000
(22:11 +0100)
committer
Szabolcs Nagy
<nsz@port70.net>
Mon, 9 Feb 2015 21:11:52 +0000
(22:11 +0100)
the name was recently added for the setxid/synccall rework,
so use the name now that we have it.
src/thread/__wait.c
patch
|
blob
|
history
diff --git
a/src/thread/__wait.c
b/src/thread/__wait.c
index 01ee598287720773b220acef49cacc9892e01106..dc33c1a30992e6c04e4482cef8a2f8279d18262a 100644
(file)
--- a/
src/thread/__wait.c
+++ b/
src/thread/__wait.c
@@
-3,7
+3,7
@@
void __wait(volatile int *addr, volatile int *waiters, int val, int priv)
{
int spins=100;
- if (priv) priv =
128
;
+ if (priv) priv =
FUTEX_PRIVATE
;
while (spins-- && (!waiters || !*waiters)) {
if (*addr==val) a_spin();
else return;