Subversion Repositories HelenOS

Rev

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

Rev 3672 Rev 3790
Line 108... Line 108...
108
        /*
108
        /*
109
             * Create thread that polls keyboard.
109
             * Create thread that polls keyboard.
110
             */
110
             */
111
        t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true);
111
        t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true);
112
        if (!t)
112
        if (!t)
113
            panic("cannot create kkbdpoll\n");
113
            panic("Cannot create kkbdpoll.");
114
        thread_ready(t);
114
        thread_ready(t);
115
    }
115
    }
116
}
116
}
117
 
117
 
118
/** Calibrate delay loop.
118
/** Calibrate delay loop.