implement a native version of poll for Win32
[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 sys_select
12 sys_time
13 errno
14
15 configure.ac:
16 gl_FUNC_POLL
17
18 Makefile.am:
19 BUILT_SOURCES += $(POLL_H)
20
21 # We need the following in order to create <poll.h> when the system
22 # doesn't have one.
23 poll.h: poll.in.h
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           cat $(srcdir)/poll.in.h; \
26         } > $@-t
27         mv -f $@-t $@
28 MOSTLYCLEANFILES += poll.h poll.h-t
29
30 Include:
31 #include <poll.h>
32
33 License:
34 LGPLv2+
35
36 Maintainer:
37 Paolo Bonzini  <bonzini@gnu.org>