Changeset 30ab05f in mainline for arch/sparc64/src/sparc64.c


Ignore:
Timestamp:
2006-02-27T20:33:36Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d87c3f3
Parents:
02f441c0
Message:

sparc64 work.
Very raw and fragile preliminary standalone keyboard support - polling mode only.
Because of a workaround in Simics, the scan codes are the same as on ia32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/sparc64/src/sparc64.c

    r02f441c0 r30ab05f  
    6262                panic("cannot create kofwinput\n");
    6363        thread_ready(t);
     64
     65        /*
     66         * Create thread that polls keyboard.
     67         */
     68        t = thread_create(kkbdpoll, NULL, TASK, 0);
     69        if (!t)
     70                panic("cannot create kkbdpoll\n");
     71        thread_ready(t);
    6472}
    6573
Note: See TracChangeset for help on using the changeset viewer.