replace __wake function with macro that performs direct syscall
authorRich Felker <dalias@aerifal.cx>
Fri, 1 Feb 2013 21:41:53 +0000 (16:41 -0500)
committerRich Felker <dalias@aerifal.cx>
Fri, 1 Feb 2013 21:41:53 +0000 (16:41 -0500)
commitfacc6acbfd20accea435d10fdd070b23877e40db
treed6d52d22c5463a9e46e2d48efa9997407111d5bf
parent96fbcf7d80f469e39d1dd12533f8bb8d13b64fe5
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.
src/internal/pthread_impl.h
src/thread/__wake.c [deleted file]