Are calls to suspend and resume ref counted? iow, if i do this in
pseudo-code:

thread->suspend();
thread->suspend();

thread->resume();
// thread is still suspended
thread->resume();
// now thread runs

is that the way it works for pthreads?

elrod

Reply via email to