2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-08 11:12:23 +00:00

QNX debuging

[SVN r36489]
This commit is contained in:
Roland Schwarz
2006-12-22 13:40:38 +00:00
parent 2d52219af2
commit 69a4ec6c00

View File

@@ -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