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