[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[commits] r4975 - in /fsf/trunk/libc: ChangeLog sysdeps/unix/sysv/linux/x86_64/sys/epoll.h



Author: eglibc
Date: Tue Jan 22 00:23:20 2008
New Revision: 4975

Log:
Import glibc-mainline for 2008-01-22

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/sysdeps/unix/sysv/linux/x86_64/sys/epoll.h

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Tue Jan 22 00:23:20 2008
@@ -1,3 +1,9 @@
+2008-01-12  Andreas Jaeger  <aj@xxxxxxx>
+
+	[BZ #5040]
+	* sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (enum EPOLL_EVENTS):
+	Add EPOLLRDHUP.
+
 2008-01-20  Samuel Thibault  <samuel.thibault@xxxxxxxxxxxx>
 
 	* hurd/hurdsock.c (_hurd_socket_server): Return the standard

Modified: fsf/trunk/libc/sysdeps/unix/sysv/linux/x86_64/sys/epoll.h
==============================================================================
--- fsf/trunk/libc/sysdeps/unix/sysv/linux/x86_64/sys/epoll.h (original)
+++ fsf/trunk/libc/sysdeps/unix/sysv/linux/x86_64/sys/epoll.h Tue Jan 22 00:23:20 2008
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002,2003,2004,2005,2006,2007 Free Software Foundation, Inc.
+/* Copyright (C) 2002,2003,2004,2005,2006,2007,2008 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -53,6 +53,8 @@
 #define EPOLLERR EPOLLERR
     EPOLLHUP = 0x010,
 #define EPOLLHUP EPOLLHUP
+    EPOLLRDHUP = 0x2000,
+#define EPOLLRDHUP EPOLLRDHUP
     EPOLLONESHOT = (1 << 30),
 #define EPOLLONESHOT EPOLLONESHOT
     EPOLLET = (1 << 31)