Changeset aeaebcc in mainline


Ignore:
Timestamp:
2006-12-14T18:12:13Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a0cda72
Parents:
62b6d17
Message:

Make the sparc64 kernel compile again.

File:
1 edited

Legend:

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

    r62b6d17 raeaebcc  
    100100                 * Create thread that polls keyboard.
    101101                 */
    102                 t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
     102                t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll", true);
    103103                if (!t)
    104104                        panic("cannot create kkbdpoll\n");
     
    127127void asm_delay_loop(const uint32_t usec)
    128128{
    129         uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t) CPU->arch.clock_frequency / 1000000;
     129        uint64_t stop = tick_read() + (uint64_t) usec * (uint64_t)
     130                CPU->arch.clock_frequency / 1000000;
    130131
    131132        while (tick_read() < stop)
Note: See TracChangeset for help on using the changeset viewer.