use bss instead of mmap for main thread's pthread thread-specific data
[oweals/musl.git] / src / thread / __timedwait.c
index b38ea9901ad5080383059b8e4606271262e51797..28b777bc225289343c7da5e1e9eed54b578e70f4 100644 (file)
@@ -17,7 +17,7 @@ int __timedwait(volatile int *addr, int val, clockid_t clk, const struct timespe
                if (to.tv_sec < 0) return ETIMEDOUT;
        }
        if (priv) priv = 128; priv=0;
-       r = __syscall(__NR_futex, (long)addr, FUTEX_WAIT | priv, val, at ? (long)&to : 0);
+       r = -__syscall(__NR_futex, (long)addr, FUTEX_WAIT | priv, val, at ? (long)&to : 0);
        if (r == ETIMEDOUT) return r;
        return 0;
 }