Subversion Repositories HelenOS

Rev

Rev 2039 | Rev 2048 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2039 Rev 2042
Line 264... Line 264...
264
        panic("can't create kernel task\n");
264
        panic("can't create kernel task\n");
265
   
265
   
266
    /*
266
    /*
267
     * Create the first thread.
267
     * Create the first thread.
268
     */
268
     */
269
    t = thread_create(kinit, NULL, k, 0, "kinit");
269
    t = thread_create(kinit, NULL, k, 0, "kinit", true);
270
    if (!t)
270
    if (!t)
271
        panic("can't create kinit thread\n");
271
        panic("can't create kinit thread\n");
272
    thread_ready(t);
272
    thread_ready(t);
273
   
273
   
274
    /*
274
    /*