浏览代码

use the internal macro name FUTEX_PRIVATE in __wait

the name was recently added for the setxid/synccall rework,
so use the name now that we have it.
Szabolcs Nagy 10 年之前
父节点
当前提交
339cc250f6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/thread/__wait.c

+ 1 - 1
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;