summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/sys
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-22 01:02:10 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:31 +0200
commit64572a51b051dc71ec12020c7a8fdae95d6cb69e (patch)
tree77203043c9c274a5f769dbe78b31c75a58f900e3 /libc/sysdeps/linux/common/sys
parentdf87a0f21e673bd4d79b174a39d8a72d5cac37ef (diff)
add epoll_pwait()
Change const to __const while at it. Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/sys')
-rw-r--r--libc/sysdeps/linux/common/sys/epoll.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/sys/epoll.h b/libc/sysdeps/linux/common/sys/epoll.h
index a55ebad62..5551bed0d 100644
--- a/libc/sysdeps/linux/common/sys/epoll.h
+++ b/libc/sysdeps/linux/common/sys/epoll.h
@@ -36,7 +36,6 @@ typedef __sigset_t sigset_t;
# define __EPOLL_PACKED
#endif
-
enum EPOLL_EVENTS
{
EPOLLIN = 0x001,
@@ -97,7 +96,7 @@ __BEGIN_DECLS
returned by epoll_create() should be closed with close(). */
extern int epoll_create (int __size) __THROW;
-/* Same as epoll_create but with an FLAGS parameter. The unused SIZE
+/* Same as epoll_create but with a FLAGS parameter. The unused SIZE
parameter has been dropped. */
extern int epoll_create1 (int __flags) __THROW;