• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/orig/

Lines Matching defs:thread

84  * 	Let thread swapping be configurable.
90 * remove use of now-defunct fields in thread [mmp,dwm]
182 * enable ddb to show it when printing thread state.
186 * The infamous name change: thread_activation + thread_shuttle = thread.
190 * Move kernel_stack from thread to activation.
223 * Added printout of thread scheduling policy to long form
224 * of thread display.
233 * show the floating-point-used status of the thread.
245 * Added i option to show thread. This gives wait state information.
260 * Added 'F' flag to db_thread_stat showing if the thread has a valid
270 * Supported "show registers" for non current thread.
271 * Changed display format of thread and task information.
272 * Changed "show thread" to print current thread information
273 * if no thread is specified.
279 * In db_print_thread, if the thread is swapped and there is a
310 * Insist that 'show thread' be called with an explicit address.
369 #include <kern/thread.h>
378 #include <machine/thread.h>
511 #define OPTION_THREAD_TITLE 0x200 /* print thread title */
512 #define OPTION_TASK_TITLE 0x400 /* print thread title */
537 } else if (!thr_act->thread) {
545 thread_t athread = thr_act->thread;
617 athread = thr_act->thread;
846 thread_act_t thread;
851 if ((thread = db_default_act) == THR_ACT_NULL) {
852 if ((thread = current_act()) == THR_ACT_NULL) {
853 db_printf("no thread.\n");
857 task = thread->task;
1051 if (db_option(modif, 'i') && thr_act->thread &&
1052 (thr_act->thread->state & TH_WAIT) &&
1053 thr_act->thread->kernel_stack == 0) {
1056 thr_act->thread->ith_option);
1113 shuttle = thr_act->thread;
1319 db_printf("current_{thread/task} 0x%x 0x%x\n",
1369 thread_t thread;
1376 queue_iterate(q, thread, thread_t, links) {
1377 thr_act = thread->top_act;