Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1076 → Rev 1077

/kernel/trunk/test/thread/thread1/test.c
41,11 → 41,13
 
static void threadtest(void *data)
{
while(1)
{
printf("%d\n",(int)(THREAD->tid));
scheduler();
}
while(1)
{
while (1)
;
printf("%d\n",(int)(THREAD->tid));
scheduler();
}
}
 
void test(void)