Skip to content

Commit

Permalink
[process] Add DBG2() messages to help track down frozen processes
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Brown committed Oct 12, 2008
1 parent f945d6d commit e6f276e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/process.c
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit e6f276e

Please sign in to comment.