diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-02-01 16:41:53 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-02-01 16:41:53 -0500 |
commit | facc6acbfd20accea435d10fdd070b23877e40db (patch) | |
tree | d6d52d22c5463a9e46e2d48efa9997407111d5bf /src/thread/__wake.c | |
parent | 96fbcf7d80f469e39d1dd12533f8bb8d13b64fe5 (diff) | |
download | musl-facc6acbfd20accea435d10fdd070b23877e40db.tar.gz musl-facc6acbfd20accea435d10fdd070b23877e40db.tar.bz2 musl-facc6acbfd20accea435d10fdd070b23877e40db.tar.xz musl-facc6acbfd20accea435d10fdd070b23877e40db.zip |
replace __wake function with macro that performs direct syscall
this should generate faster and smaller code, especially with inline
syscalls. the conditional with cnt is ugly, but thankfully cnt is
always a constant anyway so it gets evaluated at compile time. it may
be preferable to make separate __wake and __wakeall macros without a
count argument.
priv flag is not used yet; private futex support still needs to be
done at some point in the future.
Diffstat (limited to 'src/thread/__wake.c')
-rw-r--r-- | src/thread/__wake.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/thread/__wake.c b/src/thread/__wake.c deleted file mode 100644 index d8bf70f7..00000000 --- a/src/thread/__wake.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "pthread_impl.h" -#include <limits.h> - -void __wake(volatile int *addr, int cnt, int priv) -{ - if (priv) priv = 128; priv=0; - if (cnt<0) cnt = INT_MAX; - __syscall(SYS_futex, (long)addr, FUTEX_WAKE | priv, cnt); -} |