Changeset 7224093 in mainline


Ignore:
Timestamp:
2006-06-03T08:24:12Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3ba22ce
Parents:
e20de55
Message:

Modify ia64 to load 6 userspace tasks.
Tetris however makes the kernel fault on unaligned memory access in copy_from_uspace.

Files:
2 edited

Legend:

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

    re20de55 r7224093  
    4848{
    4949        /* Setup usermode init tasks. */
    50         init.cnt = 5;
     50        init.cnt = 6;
    5151        init.tasks[0].addr = INIT0_ADDRESS;
    5252        init.tasks[0].size = INIT0_SIZE;
     
    5959        init.tasks[4].addr = INIT0_ADDRESS + 0x1000000;
    6060        init.tasks[4].size = INIT0_SIZE;
     61        init.tasks[5].addr = INIT0_ADDRESS + 0x1400000;
     62        init.tasks[5].size = INIT0_SIZE;
    6163}
    6264
  • contrib/conf/ski.conf

    re20de55 r7224093  
    55romload HelenOS/uspace/fb/fb 0x1000000
    66romload HelenOS/uspace/kbd/kbd 0x1400000
     7romload HelenOS/uspace/tetris/tetris 0x1800000
    78
    89
Note: See TracChangeset for help on using the changeset viewer.