Integrate the regex documentation.
[gnulib.git] / lib / poll.in.h
index 6ab0481..b7aa59d 100644 (file)
@@ -1,7 +1,7 @@
 /* Header for poll(2) emulation
    Contributed by Paolo Bonzini.
 
-   Copyright 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+   Copyright 2001, 2002, 2003, 2007, 2009, 2010 Free Software Foundation, Inc.
 
    This file is part of gnulib.
 
 #define _GL_POLL_H
 
 /* fake a poll(2) environment */
-#define POLLIN      0x0001     /* any readable data available   */
-#define POLLPRI     0x0002     /* OOB/Urgent readable data      */
-#define POLLOUT     0x0004     /* file descriptor is writeable  */
-#define POLLERR     0x0008     /* some poll error occurred      */
-#define POLLHUP     0x0010     /* file descriptor was "hung up" */
-#define POLLNVAL    0x0020     /* requested events "invalid"    */
+#define POLLIN      0x0001      /* any readable data available   */
+#define POLLPRI     0x0002      /* OOB/Urgent readable data      */
+#define POLLOUT     0x0004      /* file descriptor is writeable  */
+#define POLLERR     0x0008      /* some poll error occurred      */
+#define POLLHUP     0x0010      /* file descriptor was "hung up" */
+#define POLLNVAL    0x0020      /* requested events "invalid"    */
 #define POLLRDNORM  0x0040
 #define POLLRDBAND  0x0080
 #define POLLWRNORM  0x0100
@@ -36,9 +36,9 @@
 
 struct pollfd
 {
-  int fd;                      /* which file descriptor to poll */
-  short events;                        /* events we are interested in   */
-  short revents;               /* events found on return        */
+  int fd;                       /* which file descriptor to poll */
+  short events;                 /* events we are interested in   */
+  short revents;                /* events found on return        */
 };
 
 typedef unsigned long nfds_t;