add C11 condition variable functions
authorJens Gustedt <Jens.Gustedt@inria.fr>
Sun, 7 Sep 2014 02:27:45 +0000 (22:27 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 7 Sep 2014 02:27:45 +0000 (22:27 -0400)
commit14397cec2c8429b504b17aaf92509b48da3681b9
tree481ed8c5e1d748e88d263b0b20c1d2ccc934051e
parent8b0472932c1cb8cb2cc46322b21c0c4e21848522
add C11 condition variable functions

Because of the clear separation for private pthread_cond_t these
interfaces are quite simple and direct.
src/thread/cnd_broadcast.c [new file with mode: 0644]
src/thread/cnd_destroy.c [new file with mode: 0644]
src/thread/cnd_init.c [new file with mode: 0644]
src/thread/cnd_signal.c [new file with mode: 0644]
src/thread/cnd_timedwait.c [new file with mode: 0644]
src/thread/cnd_wait.c [new file with mode: 0644]