2
0
mirror of https://github.com/boostorg/fiber.git synced 2026-02-13 12:22:36 +00:00

remove debug output

This commit is contained in:
Oliver Kowalke
2013-01-30 19:16:03 +01:00
parent ecea311e65
commit d5e85ef828

View File

@@ -18,9 +18,6 @@
# include BOOST_ABI_PREFIX
#endif
#include <cstdio>
#include <sstream>
namespace boost {
namespace fibers {
namespace detail {
@@ -72,12 +69,7 @@ fiber_base::release()
// protect against concurrent access to joining_
unique_lock< spinlock > lk( joining_mtx_);
BOOST_FOREACH( fiber_base::ptr_t p, joining_)
{
std::stringstream ss;
ss << p->get_id();
fprintf(stderr, "p->wake-up( true) : %s\n", ss.str().c_str() );
p->wake_up();
}
{ p->wake_up(); }
joining_.clear();
}