Subversion Repositories HelenOS-historic

Rev

Rev 1062 | Rev 1104 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1062 Rev 1077
Line 41... Line 41...
41
 
41
 
42
static void threadtest(void *data)
42
static void threadtest(void *data)
43
{
43
{
44
    while(1)
44
    while(1)
45
    {
45
    {
-
 
46
        while (1)
-
 
47
            ;
46
        printf("%d\n",(int)(THREAD->tid));
48
        printf("%d\n",(int)(THREAD->tid));
47
    scheduler();
49
        scheduler();
48
    }
50
    }
49
}
51
}
50
 
52