mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
BZ#14985: Remove erroneous EPOLL_NONBLOCK
[BZ# 14985] * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK): Remove. * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise. * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise. ChangeLog.mips: [BZ# 14985] * sysdeps/unix/sysv/linux/mips/bits/epoll.h (EPOLL_NONBLOCK): * Remove. ChangeLog.hppa: [BZ# 14985] * sysdeps/unix/sysv/linux/hppa/sys/epoll.h (EPOLL_NONBLOCK): Remove. ChangeLog.alpha: [BZ# 14985] * sysdeps/unix/sysv/linux/alpha/bits/epoll.h (EPOLL_NONBLOCK): Remove.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2013-01-08 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
[BZ# 14985]
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
|
||||||
|
Remove.
|
||||||
|
* sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
|
||||||
|
|
||||||
2013-01-07 Anton Blanchard <anton@samba.org>
|
2013-01-07 Anton Blanchard <anton@samba.org>
|
||||||
|
|
||||||
* sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
|
* sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
|
||||||
|
2
NEWS
2
NEWS
@ -9,7 +9,7 @@ Version 2.18
|
|||||||
|
|
||||||
* The following bugs are resolved with this release:
|
* The following bugs are resolved with this release:
|
||||||
|
|
||||||
13951, 14317, 14981, 14982, 14994, 14996.
|
13951, 14317, 14981, 14982, 14985, 14994, 14996.
|
||||||
|
|
||||||
|
|
||||||
Version 2.17
|
Version 2.17
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2013-01-08 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
[BZ# 14985]
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/epoll.h (EPOLL_NONBLOCK): Remove.
|
||||||
|
|
||||||
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/alpha/Makefile: Fix copyright notice formatting.
|
* sysdeps/alpha/Makefile: Fix copyright notice formatting.
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2013-01-08 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
[BZ# 14985]
|
||||||
|
* sysdeps/unix/sysv/linux/hppa/sys/epoll.h (EPOLL_NONBLOCK):
|
||||||
|
Remove.
|
||||||
|
|
||||||
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* All files with FSF copyright notices: Update copyright dates
|
* All files with FSF copyright notices: Update copyright dates
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2013-01-08 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
[BZ# 14985]
|
||||||
|
* sysdeps/unix/sysv/linux/mips/bits/epoll.h (EPOLL_NONBLOCK): Remove.
|
||||||
|
|
||||||
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
2013-01-02 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* All files with FSF copyright notices: Update copyright dates
|
* All files with FSF copyright notices: Update copyright dates
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 010000000,
|
EPOLL_CLOEXEC = 010000000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 000000004
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
@ -33,10 +33,8 @@ typedef __sigset_t sigset_t;
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 010000000,
|
EPOLL_CLOEXEC = 010000000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 00200004 /* HPUX has separate NDELAY & NONBLOCK */
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 02000000,
|
EPOLL_CLOEXEC = 02000000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 00000200
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 02000000,
|
EPOLL_CLOEXEC = 02000000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 00004000
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 0x400000,
|
EPOLL_CLOEXEC = 0x400000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 0x004000
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
@ -22,10 +22,8 @@
|
|||||||
/* Flags to be passed to epoll_create1. */
|
/* Flags to be passed to epoll_create1. */
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
EPOLL_CLOEXEC = 02000000,
|
EPOLL_CLOEXEC = 02000000
|
||||||
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
#define EPOLL_CLOEXEC EPOLL_CLOEXEC
|
||||||
EPOLL_NONBLOCK = 00004000
|
|
||||||
#define EPOLL_NONBLOCK EPOLL_NONBLOCK
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define __EPOLL_PACKED __attribute__ ((__packed__))
|
#define __EPOLL_PACKED __attribute__ ((__packed__))
|
||||||
|
Reference in New Issue
Block a user