diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2008-04-15 15:41:21 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2008-04-15 15:41:21 +0000 |
| commit | dd53b33c3badd538d2d25a35146d9ab032573cc0 (patch) | |
| tree | 305a9f3e6cdc5d88d6c78638c75dda9d3ddb9831 /cpp/src/Makefile.am | |
| parent | 8ac8e19e4805e78c3adcab66f1aab2ef5190f48e (diff) | |
| download | qpid-python-dd53b33c3badd538d2d25a35146d9ab032573cc0.tar.gz | |
Refactored the IO framework that sits on top of Poller so that it uses a generalised IOHandle.
This means that you can define new classes derived from IOHandle (other than Socket) that
can also be added to a Poller and waited for.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@648288 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/Makefile.am')
| -rw-r--r-- | cpp/src/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index 4a43a9cc55..3177d280a6 100644 --- a/cpp/src/Makefile.am +++ b/cpp/src/Makefile.am @@ -62,7 +62,7 @@ qpidd_SOURCES = qpidd.cpp posix_plat_src = \ qpid/sys/epoll/EpollPoller.cpp \ - qpid/sys/DeletionManager.h \ + qpid/sys/posix/IOHandle.cpp \ qpid/sys/posix/Socket.cpp \ qpid/sys/posix/AsynchIO.cpp \ qpid/sys/posix/Time.cpp \ @@ -469,15 +469,17 @@ nobase_include_HEADERS = \ qpid/sys/AtomicCount.h \ qpid/sys/BlockingQueue.h \ qpid/sys/Condition.h \ + qpid/sys/ConnectionCodec.h \ qpid/sys/ConnectionInputHandler.h \ qpid/sys/ConnectionInputHandlerFactory.h \ qpid/sys/ConnectionOutputHandler.h \ + qpid/sys/DeletionManager.h \ qpid/sys/Dispatcher.h \ + qpid/sys/IOHandle.h \ qpid/sys/Module.h \ qpid/sys/Monitor.h \ qpid/sys/Mutex.h \ qpid/sys/OutputControl.h \ - qpid/sys/ConnectionCodec.h \ qpid/sys/OutputTask.h \ qpid/sys/Poller.h \ qpid/sys/Runnable.h \ |
