summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-06-20 04:32:42 +0200
committerBruno Haible <bruno@clisp.org>2019-06-20 04:46:54 +0200
commit36307d84f7bed226e8059c61ea611cf01b1dfdc4 (patch)
treee955b92b5d37f4464f862ed1f3706285f554655e /modules
parent6b4c64f06648b95f942d5428991979b9d8f2c69b (diff)
downloadgnulib-36307d84f7bed226e8059c61ea611cf01b1dfdc4.tar.gz
cnd: New module.
* lib/cnd.c: New file. * modules/cnd: New file. * doc/posix-functions/cnd_init.texi: Mention the new module. * doc/posix-functions/cnd_wait.texi: Likewise. * doc/posix-functions/cnd_timedwait.texi: Likewise. * doc/posix-functions/cnd_signal.texi: Likewise. * doc/posix-functions/cnd_broadcast.texi: Likewise. * doc/posix-functions/cnd_destroy.texi: Likewise.
Diffstat (limited to 'modules')
-rw-r--r--modules/cnd31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/cnd b/modules/cnd
new file mode 100644
index 0000000000..635a422487
--- /dev/null
+++ b/modules/cnd
@@ -0,0 +1,31 @@
+Description:
+ISO C 11 condition variable functions.
+
+Files:
+lib/cnd.c
+
+Depends-on:
+threads-h
+windows-cond
+gettimeofday
+
+configure.ac:
+AC_REQUIRE([gl_THREADS_H])
+if test $HAVE_THREADS_H = 0; then
+ AC_LIBOBJ([cnd])
+fi
+gl_THREADS_MODULE_INDICATOR([cnd])
+
+Makefile.am:
+
+Include:
+<threads.h>
+
+Link:
+$(LTLIBSTDTHREAD) when linking with libtool, $(LIBSTDTHREAD) otherwise
+
+License:
+LGPLv2+
+
+Maintainer:
+all