I am studying nachos for a university project and can't understand what the DEBUG(...) statement in the below code is doing.
void
ThreadTest1()
{
DEBUG('t', "Entering ThreadTest1");
Thread *t = new Thread("forked thread");
t->Fork(SimpleThread, 1);
SimpleThread(0);
}
Can someone please help ?