Lines Matching defs:threads
658 filterDebugThreads(jthread *threads, int count)
663 /* Squish out all of the debugger-spawned threads */
665 jthread thread = threads[i];
668 threads[current] = thread;
913 * Debugger threads need cycles in all sorts of strange
917 * that debugger threads will be starved. (There needs to be
918 * a way to give debugger threads a priority higher than any
1036 * 1) for running application threads by deferring the interrupt
1039 * 2) for debugger threads by ignoring the interrupt; this is the
1040 * most robust solution since debugger threads don't use interrupts
1043 * 3) for application threads that have not started or already
1212 * Return array of all threads (must be inside a WITH_LOCAL_REFS)
1217 jthread *threads;
1221 threads = NULL;
1223 (gdata->jvmti, count, &threads);
1228 EXIT_ERROR(error, "getting all threads");
1230 return threads;