verify: new macro 'assume'
[gnulib.git] / modules / pthread
1 Description:
2 Implement a trivial subset of the pthreads library.
3
4 Files:
5 lib/pthread.c
6 lib/pthread.in.h
7 m4/pthread.m4
8
9 Depends-on:
10 extern-inline
11 sched
12 time
13
14 configure.ac:
15 gl_PTHREAD_CHECK
16 gl_MODULE_INDICATOR([pthread])
17
18 Makefile.am:
19 BUILT_SOURCES += $(PTHREAD_H)
20
21 # We need the following in order to create <pthread.h> when the system
22 # doesn't have one that works with the given compiler.
23 if GL_GENERATE_PTHREAD_H
24 pthread.h: pthread.in.h $(top_builddir)/config.status
25         $(AM_V_GEN)rm -f $@-t $@ && \
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
27           sed -e 's|@''GUARD_PREFIX''@|${gl_include_guard_prefix}|g' \
28               -e 's|@''HAVE_PTHREAD_H''@|$(HAVE_PTHREAD_H)|g' \
29               -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
30               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
31               -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
32               -e 's|@''NEXT_PTHREAD_H''@|$(NEXT_PTHREAD_H)|g' \
33               -e 's|@''HAVE_PTHREAD_T''@|$(HAVE_PTHREAD_T)|g' \
34               -e 's|@''HAVE_PTHREAD_SPINLOCK_T''@|$(HAVE_PTHREAD_SPINLOCK_T)|g' \
35               < $(srcdir)/pthread.in.h; \
36         } > $@-t && \
37         mv $@-t $@
38 else
39 pthread.h: $(top_builddir)/config.status
40         rm -f $@
41 endif
42 MOSTLYCLEANFILES += pthread.h pthread.h-t
43
44 Include:
45 <pthread.h>
46
47 Link:
48 $(LIB_PTHREAD)
49
50 License:
51 LGPLv2+
52
53 Maintainer:
54 Glen Lenker and Paul Eggert