예제 #1
0
void _timerThread::post(AsyncEvent *p)
{
    s_acSleep.put(p);
    s_timer.m_sem.Post();
}
예제 #2
0
파일: fbFiber.cpp 프로젝트: cwyiu/fibjs
void AsyncEvent::sleep(int ms)
{
    m_v = ms;
    s_acSleep.put(this);
}