summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/Makefile.am
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-07-27 17:19:30 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-07-27 17:19:30 +0000
commit008544afce4d981650212d01db21d8a94f18e562 (patch)
treeef37bbaf496004ce2e11e16939b13574cb64fa44 /qpid/cpp/src/Makefile.am
parent30947b33b0aa8a87a9db42615b3797ceacef3250 (diff)
downloadqpid-python-008544afce4d981650212d01db21d8a94f18e562.tar.gz
* Asynchronous network IO subsystem
- This is now implemented such that it very nearly only depends on the platform code (Socker & Poller), this is not 100% true at present, but should be simple to finish. - This is still not the default (use "./configure --disable-apr-netio" to get it) - Interrupting the broker gives a known error - Default for number of broker io threads is not correct (needs to be number of CPUs - it will run slower with too many io threads) * EventChannel code - Deleted all EventChannel code as it's entirely superceded by this new shiny code ;-) * Rearranged the platform Socket implementations a bit for better abstraction git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@560323 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/Makefile.am')
-rw-r--r--qpid/cpp/src/Makefile.am11
1 files changed, 2 insertions, 9 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am
index cf1598bcca..7950299f64 100644
--- a/qpid/cpp/src/Makefile.am
+++ b/qpid/cpp/src/Makefile.am
@@ -58,18 +58,12 @@ apr_plat_src = \
apr_plat_hdr = \
qpid/sys/apr/Condition.h \
qpid/sys/apr/Mutex.h \
- qpid/sys/apr/Socket.h \
qpid/sys/apr/Thread.h
posix_netio_src = \
- qpid/sys/posix/EventChannel.cpp \
- qpid/sys/posix/EventChannelAcceptor.cpp \
- qpid/sys/posix/EventChannelConnection.cpp \
- qpid/sys/posix/EventChannelThreads.cpp
+ qpid/sys/AsynchIOAcceptor.cpp
-posix_netio_hdr = \
- qpid/sys/posix/EventChannel.h \
- qpid/sys/posix/EventChannelThreads.h
+posix_netio_hdr =
posix_plat_src = \
qpid/sys/Dispatcher.cpp \
@@ -86,7 +80,6 @@ posix_plat_hdr = \
qpid/sys/posix/Condition.h \
qpid/sys/posix/PrivatePosix.h \
qpid/sys/posix/Mutex.h \
- qpid/sys/posix/Socket.h \
qpid/sys/posix/Thread.h
if USE_APR_NETIO