]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/sysv/linux/mips/sys/epoll.h: Change epoll_create2
authorJoseph Myers <joseph@codesourcery.com>
Tue, 19 Aug 2008 16:53:11 +0000 (16:53 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 19 Aug 2008 16:53:11 +0000 (16:53 +0000)
to epoll_create1.

ChangeLog.mips
sysdeps/unix/sysv/linux/mips/sys/epoll.h

index 0e6a06b025526dbbe3288ec651aa8db237cd44f5..065ac681ae4ad1d69518ccde0bb2a1e5c61160d8 100644 (file)
@@ -1,3 +1,8 @@
+2008-08-19  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/sys/epoll.h: Change epoll_create2
+       to epoll_create1.
+
 2008-08-19  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/mips/bits/socket.h: Define SOCK_CLOEXEC,
index 72bed46409c8b8f3f6fd15ad1f2686eb2d47eaa5..6d2ec8edf089704d0d59f5260f3f86b02ce69804 100644 (file)
@@ -31,7 +31,7 @@ typedef __sigset_t sigset_t;
 #endif
 
 
-/* Flags to be passed to epoll_create2.  */
+/* Flags to be passed to epoll_create1.  */
 enum
   {
     EPOLL_CLOEXEC = 02000000,
@@ -101,8 +101,9 @@ __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 additional FLAGS parameter.  */
-extern int epoll_create2 (int __size, int __flags) __THROW;
+/* Same as epoll_create but with an FLAGS parameter.  The unused SIZE
+   parameter has been dropped.  */
+extern int epoll_create1 (int __flags) __THROW;
 
 
 /* Manipulate an epoll instance "epfd". Returns 0 in case of success,