activeThreads      48 threadlist.cpp Thread *activeThreads = NULL;
activeThreads     126 threadlist.cpp   while (activeThreads != NULL) {
activeThreads     127 threadlist.cpp     ThreadList::threadIsDead(activeThreads); // takes care of updating "activeThreads" ptr.
activeThreads     432 threadlist.cpp     for (thread = activeThreads; thread != NULL; thread = next) {
activeThreads     492 threadlist.cpp   JASSERT(activeThreads != NULL);
activeThreads     675 threadlist.cpp   for (thread = activeThreads; thread != NULL; thread = thread->next) {
activeThreads     816 threadlist.cpp   for (thread = activeThreads; thread != NULL; thread = next_thread) {
activeThreads     839 threadlist.cpp   curThread->next = activeThreads;
activeThreads     841 threadlist.cpp   if (activeThreads != NULL) {
activeThreads     842 threadlist.cpp     activeThreads->prev = curThread;
activeThreads     844 threadlist.cpp   activeThreads = curThread;
activeThreads     875 threadlist.cpp   if (thread == activeThreads) {
activeThreads     876 threadlist.cpp     activeThreads = activeThreads->next;