From 69a4ec6c0010e318ee1ede790bba7f0d85a289d8 Mon Sep 17 00:00:00 2001 From: Roland Schwarz Date: Fri, 22 Dec 2006 13:40:38 +0000 Subject: [PATCH] QNX debuging [SVN r36489] --- src/condition.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/condition.cpp b/src/condition.cpp index 9daebab1..ffccad05 100644 --- a/src/condition.cpp +++ b/src/condition.cpp @@ -385,8 +385,11 @@ bool condition_impl::do_timed_wait(const xtime& xt, pthread_mutex_t* pmutex) boost::xtime now; boost::xtime_get(&now, boost::TIME_UTC); std::cerr << "now: " << now.sec << " " << now.nsec << std::endl; + std::cerr << "time: " << time(0) << std::endl; std::cerr << "xtime: " << xt.sec << " " << xt.nsec << std::endl; std::cerr << "ts: " << ts.tv_sec << " " << ts.tv_nsec << std::endl; + std::cerr << "pmutex: " << pmutex << std::endl; + std::cerr << "condition: " << &m_condition << std::endl; assert(res != EINVAL); } #endif