Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1077 → Rev 1076

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