summaryrefslogtreecommitdiff
path: root/include/apr_poll.h
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-07-11 14:39:04 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2002-07-11 14:39:04 +0000
commit8881970ff87866e165a720f22affd678ff3d84ef (patch)
treefbe4fb95c0b472cab9b1d905adc26b70b448a0c6 /include/apr_poll.h
parent126596617194a948a1254be6bbaae0da0eb333e6 (diff)
downloadlibapr-8881970ff87866e165a720f22affd678ff3d84ef.tar.gz
get the new poll code to build on AIX, which for 32-bit builds has some
extremely unfortunate macros in <sys/poll.h> that play with "events" and "revents" via #define git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_poll.h')
-rw-r--r--include/apr_poll.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_poll.h b/include/apr_poll.h
index 2acc5f760..8dc1a7613 100644
--- a/include/apr_poll.h
+++ b/include/apr_poll.h
@@ -108,8 +108,8 @@ typedef struct apr_pollfd_t apr_pollfd_t;
struct apr_pollfd_t {
apr_pool_t *p;
apr_datatype_e desc_type;
- apr_int16_t events;
- apr_int16_t revents;
+ apr_int16_t reqevents;
+ apr_int16_t rtnevents;
apr_descriptor desc;
};