Changeset f0450658 in mainline for kernel/arch/ia64/src/ia64.c


Ignore:
Timestamp:
2006-10-19T18:07:18Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8cee705
Parents:
3dea17f
Message:

ia64 work.
Move keyboard polling to a dedicated kernel thread.
Console initialization and console related sysinfo setup
can be now done in a single function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/ia64.c

    r3dea17f rf0450658  
    8787        ski_init_console();
    8888        it_init();     
    89         ski_set_console_sysinfo();
    9089}
    9190
     
    10099void arch_post_smp_init(void)
    101100{
     101        thread_t *t;
     102
     103        if (config.cpu_active == 1) {
     104                /*
     105                 * Create thread that polls keyboard.
     106                 */
     107                t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
     108                if (!t)
     109                        panic("cannot create kkbdpoll\n");
     110                thread_ready(t);
     111        }
    102112}
    103113
Note: See TracChangeset for help on using the changeset viewer.