Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2852 → Rev 2853

/branches/tracing/uspace/app/tester/debug/debug1.c
23,7 → 23,10
rc = thread_create(t_proc, NULL, "test", &tid);
 
printf("(active) wait for thread 'test'\n");
while (!done) usleep(500000);
while (!done) {
usleep(5000000);
printf(".");
}
 
printf("done\n");
return NULL;