summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2009-07-10 21:41:49 +0000
committerAndrew Stitcher <astitcher@apache.org>2009-07-10 21:41:49 +0000
commit7b9b83717828b15870b56ae46326e42f3b418344 (patch)
tree1a4b78c204d0e4d7d450135f5f300f8729b4551e /cpp/src/qpid/sys
parentfa7588555ec9a99efaa2ef964c69294652ea2611 (diff)
downloadqpid-python-7b9b83717828b15870b56ae46326e42f3b418344.tar.gz
Typos/Whitespace fixes
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793119 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys')
-rw-r--r--cpp/src/qpid/sys/DispatchHandle.h6
-rw-r--r--cpp/src/qpid/sys/Timer.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/sys/DispatchHandle.h b/cpp/src/qpid/sys/DispatchHandle.h
index 916d4c641a..860665877c 100644
--- a/cpp/src/qpid/sys/DispatchHandle.h
+++ b/cpp/src/qpid/sys/DispatchHandle.h
@@ -38,14 +38,14 @@ class DispatchHandleRef;
* you need to:
*
* - Subclass IOHandle, in the constructor supply an appropriate
- * IOHandlerPrivate object for the platform.
- *
+ * IOHandlerPrivate object for the platform.
+ *
* - Construct a DispatchHandle passing it your IOHandle and
* callback functions for read, write and disconnect events.
*
* - Ensure the DispatchHandle is not deleted until the poller is no longer using it.
* TODO: astitcher document DispatchHandleRef to simplify this.
- *
+ *
* When an event occurs on the handle, the poller calls the relevant callback and
* stops watching that handle. Your callback can call rewatch() or related functions
* to re-enable polling.
diff --git a/cpp/src/qpid/sys/Timer.h b/cpp/src/qpid/sys/Timer.h
index b5bf5d8a4c..c1f0ae89fc 100644
--- a/cpp/src/qpid/sys/Timer.h
+++ b/cpp/src/qpid/sys/Timer.h
@@ -71,7 +71,7 @@ bool operator<(const boost::intrusive_ptr<TimerTask>& a,
const boost::intrusive_ptr<TimerTask>& b);
class Timer : private Runnable {
- qpid::sys::Monitor monitor;
+ qpid::sys::Monitor monitor;
std::priority_queue<boost::intrusive_ptr<TimerTask> > tasks;
qpid::sys::Thread runner;
bool active;