Work around select() bug on Interix 3.5.
[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         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
26           cat $(srcdir)/poll.in.h; \
27         } > $@-t
28         mv -f $@-t $@
29 MOSTLYCLEANFILES += poll.h poll.h-t
30
31 Include:
32 #include <poll.h>
33
34 License:
35 LGPLv2+
36
37 Maintainer:
38 Paolo Bonzini  <bonzini@gnu.org>