autoupdate
[gnulib.git] / modules / poll
1 Description:
2 poll() function: wait for some event on a set of file descriptors.
3
4 Files:
5 lib/poll.c
6 lib/poll.in.h
7 m4/poll.m4
8
9 Depends-on:
10 alloca
11 select
12 sys_select
13 sys_time
14 errno
15
16 configure.ac:
17 gl_FUNC_POLL
18
19 Makefile.am:
20 BUILT_SOURCES += $(POLL_H)
21
22 # We need the following in order to create <poll.h> when the system
23 # doesn't have one.
24 poll.h: poll.in.h
25         $(AM_V_GEN)rm -f $@-t $@ && \
26         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
27           cat $(srcdir)/poll.in.h; \
28         } > $@-t && \
29         mv -f $@-t $@
30 MOSTLYCLEANFILES += poll.h poll.h-t
31
32 Include:
33 <poll.h>
34
35 License:
36 LGPLv2+
37
38 Maintainer:
39 Paolo Bonzini  <bonzini@gnu.org>