summaryrefslogtreecommitdiff
path: root/include/apr_poll.h
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2013-10-21 16:22:28 +0000
committerEric Covener <covener@apache.org>2013-10-21 16:22:28 +0000
commite4595360198f2b893067e8854cff8565e79fea47 (patch)
tree17ce0e6e08672a67ba31330103cc98c7cb7fc272 /include/apr_poll.h
parentcc02ce9602561411fd5fb0f760bb1a1cbffa1270 (diff)
downloadapr-e4595360198f2b893067e8854cff8565e79fea47.tar.gz
Changes to apr_pollset_method_e enum value of APR_POLLSET_POLL and
APR_POLLSET_AIO_MSGQ. Restore APR_POLLSET_POLL to its pre-r1308910 (April 2012) value, and move APR_POLLSET_AIO_MSGQ ahead. This keeps the enum in the same order as the backport to 1.5.x, which needs to not move APR_POLLSET_POLL for apps written against 1.4.x. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1534266 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 9cdd0746c..7ddae5bd7 100644
--- a/include/apr_poll.h
+++ b/include/apr_poll.h
@@ -77,8 +77,8 @@ typedef enum {
APR_POLLSET_KQUEUE, /**< Poll uses kqueue method */
APR_POLLSET_PORT, /**< Poll uses Solaris event port method */
APR_POLLSET_EPOLL, /**< Poll uses epoll method */
- APR_POLLSET_AIO_MSGQ, /**< Poll uses z/OS asio method */
- APR_POLLSET_POLL /**< Poll uses poll method */
+ APR_POLLSET_POLL, /**< Poll uses poll method */
+ APR_POLLSET_AIO_MSGQ /**< Poll uses z/OS asio method */
} apr_pollset_method_e;
/** Used in apr_pollfd_t to determine what the apr_descriptor is */