diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-01 12:45:02 -0700 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2010-12-01 15:35:17 +0100 |
commit | 9959526a475c6d965417ec33e45b4a52c4509bfd (patch) | |
tree | 99c92c57d6dcec6d8aa8ab5448bb37ccb6d97c1a | |
parent | 08031ce5e3fc7637027200513e451f330e57ac8c (diff) | |
download | glibc-9959526a475c6d965417ec33e45b4a52c4509bfd.tar.gz glibc-9959526a475c6d965417ec33e45b4a52c4509bfd.tar.xz glibc-9959526a475c6d965417ec33e45b4a52c4509bfd.zip |
Update sparc epoll.h from epoll_create2 to epoll_create1
(cherry picked from commit fdc0c10d9b5c39ec20c35d2f3808d3c70cb7f60b)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/sys/epoll.h | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 473bc7c757..432c86266b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-08-31 Mike Frysinger <vapier@gentoo.org> + + * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete. + (epoll_create1): Declare. + 2010-09-06 Andreas Schwab <schwab@redhat.com> * manual/Makefile: Don't mix pattern rules with normal rules. diff --git a/sysdeps/unix/sysv/linux/sparc/sys/epoll.h b/sysdeps/unix/sysv/linux/sparc/sys/epoll.h index cc0ddef69e..9943f21383 100644 --- a/sysdeps/unix/sysv/linux/sparc/sys/epoll.h +++ b/sysdeps/unix/sysv/linux/sparc/sys/epoll.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002-2006, 2007, 2008 Free Software Foundation, Inc. +/* Copyright (C) 2002-2006, 2007, 2008, 2010 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 @@ -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 = 0x400000, @@ -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, |