2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-20 06:23:14 +00:00

[process] Add DBG2() messages to help track down frozen processes

This commit is contained in:
Michael Brown 2008-10-12 15:06:07 +01:00
parent f945d6d201
commit e6f276ece3

View File

@ -79,7 +79,9 @@ void step ( void ) {
list_for_each_entry ( process, &run_queue, list ) {
list_del ( &process->list );
list_add_tail ( &process->list, &run_queue );
DBGC2 ( process, "PROCESS %p executing\n", process );
process->step ( process );
DBGC2 ( process, "PROCESS %p finished executing\n", process );
break;
}
}