-
- // crit section protects access to all of the arrays below
- wxCriticalSection m_critsect;
-
- // all the threads currently alive - as soon as the thread terminates, it's
- // removed from the array
- wxArrayThread m_threads;
-
- // both of these arrays are only valid between 2 iterations of OnIdle(),
- // they're cleared each time it is excuted.
-
- // the array of threads which finished (either because they did their work
- // or because they were explicitly stopped)
- wxArrayThread m_terminated;
-
- // the array of threads which were stopped by the user and not terminated
- // by themselves - these threads shouldn't be Delete()d second time from
- // OnIdle()
- wxArrayThread m_stopped;
-