Esempio n. 1
0
 void signal()
 {
     boost::fibers::mutex::scoped_lock l(m);
     flag=true;
     cond.notify_all();
 }
Esempio n. 2
0
void notify_all_fn( boost::fibers::condition & cond)
{
	cond.notify_all();
}