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