mirror of https://github.com/minexew/Shrine.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
784 B
30 lines
784 B
#help_index "Info;Task" |
|
U0 TaskRepTask(CTask *task,I64 indent) |
|
{ |
|
CTask *task1; |
|
"%h*c$$MA,T=\"%08X\",LM=\"Kill(0x%X);\n\",$$ $$BLACK$$#%d$$FG$$ " |
|
"$$TX,\"%$$Q...\",SCX=16$$\n",indent,CH_SPACE,task,task,task->task_num, |
|
task->task_title; |
|
"%h*c%08X %04X:%04X:%08X\n",indent+2,CH_SPACE,TaskMemAlloced(task), |
|
task->task_flags,task->display_flags,task->win_inhibit; |
|
task1=task->next_child_task; |
|
while (task1!=(&task->next_child_task)(U8 *) |
|
-offset(CTask.next_sibling_task)) { |
|
TaskRepTask(task1,indent+2); |
|
task1=task1->next_sibling_task; |
|
} |
|
} |
|
|
|
public U0 TaskRep() |
|
{//Report current tasks on all cores. |
|
I64 i; |
|
CCPU *c; |
|
PUSHFD |
|
CLI |
|
for (i=0;i<mp_cnt;i++) { |
|
c=&cpu_structs[i]; |
|
"$$PURPLE$$CPU%02X$$FG$$\n",i; |
|
TaskRepTask(c->seth_task,2); |
|
} |
|
POPFD |
|
}
|
|
|