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