thread_resumeAll

Resume all threads but the calling thread for "stop the world" garbage collection runs. This function must be called once for each preceding call to thread_suspendAll before the threads are actually resumed.

In: This routine must be preceded by a call to thread_suspendAll.

extern (C)
void
thread_resumeAll
nothrow
(
)
in { assert (suspendDepth > 0); }

Throws

ThreadError if the resume operation fails for a running thread.

Suggestion Box / Bug Report