From 0268195b4519dfc03c33ea49a25a7c3ee76ade16 Mon Sep 17 00:00:00 2001 From: Laurence Withers Date: Wed, 7 Nov 2007 21:12:12 +0000 Subject: [PATCH] Add compatibility group --- src/liblwevent/100_compat.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/liblwevent/100_compat.h diff --git a/src/liblwevent/100_compat.h b/src/liblwevent/100_compat.h new file mode 100644 index 0000000..4a39543 --- /dev/null +++ b/src/liblwevent/100_compat.h @@ -0,0 +1,30 @@ +/* liblwevent/src/liblwevent/000_TopHeader.h + * + * (c)2007, Laurence Withers, . + * Released under the GNU GPLv3. See file COPYING or + * http://www.gnu.org/copyleft/gpl.html for details. +*/ + +/*! \defgroup compat Compatibility module. + +This group will be removed when these options are available in \a glibc. It +includes definitions for things that are available in the kernel but not yet in the C library. + +*/ +/*!@{*/ + + + +#include +#ifndef EPOLLRDHUP +/*! \brief EPOLLRDHUP flag. See \c epoll_ctl(2). */ +#define EPOLLRDHUP 0x2000 +#endif + + + +/*!@}*/ +/* options for text editors +kate: replace-trailing-space-save true; space-indent true; tab-width 4; +vim: expandtab:ts=4:sw=4:syntax=c.doxygen +*/