diff options
author | Christian Pointner <equinox@anytun.org> | 2008-02-04 21:26:12 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2008-02-04 21:26:12 +0000 |
commit | 84fb3a360f2bd4f081e1b1ec2e597443d378783b (patch) | |
tree | ec998038b90df3a317e16110c2d6f0570b62fda1 /syncQueue.cpp | |
parent | fixed Deadlock @ connecetionlist (diff) |
cout to clog
Diffstat (limited to 'syncQueue.cpp')
-rw-r--r-- | syncQueue.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/syncQueue.cpp b/syncQueue.cpp index 81c8a0e..7d3c35f 100644 --- a/syncQueue.cpp +++ b/syncQueue.cpp @@ -42,15 +42,10 @@ #include "syncQueue.h" void SyncQueue::push(const SyncCommand & scom ) { - - std::cout << "entered push" << std::endl; - std::ostringstream sout; boost::archive::text_oarchive oa(sout); oa << scom; - std::cout << "after serialize" << std::endl; - Lock lock(mutex_); queue_.push(sout.str()); } |