Lines Matching defs:started
31 /* The pthread handle. Not valid unless STARTED is true. */
36 int started;
48 thread, mark the thread as started, and then block waiting for the main
64 /* Mark the thread as started. */
65 thread->started = TRUE;
67 /* Signal the main thread to tell it we are started. The main thread
87 new thread was started, otherwise return false. */
95 if (!threads[idx].started)
127 /* Look for a thread that is started. */
129 if (threads[idx].started)
152 /* Now the thread has exited, mark it as no longer started. */
153 assert (threads[idx].started);
154 threads[idx].started = FALSE;
169 threads[i].started = FALSE;