Changeset d3b8c1f in mainline for init/init.c


Ignore:
Timestamp:
2006-04-23T16:34:45Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4309741
Parents:
cdafab1
Message:

Reflect changes in syscall names in userspace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • init/init.c

    rcdafab1 rd3b8c1f  
    9595{
    9696        printf("Writing to good memory\n");
    97         mremap(&_heap, 120000, 0);
     97        as_area_resize(&_heap, 120000, 0);
    9898        printf("%P\n", ((char *)&_heap));
    9999        printf("%P\n", ((char *)&_heap) + 80000);
    100100        *(((char *)&_heap) + 80000) = 10;
    101101        printf("Making small\n");
    102         mremap(&_heap, 16000, 0);
     102        as_area_resize(&_heap, 16000, 0);
    103103        printf("Failing..\n");
    104104        *((&_heap) + 80000) = 10;
     
    306306//      test_slam();
    307307       
    308         printf("Userspace task, taskid=%llX\n", get_task_id());
     308        printf("Userspace task, taskid=%llX\n", task_get_id());
    309309
    310310        futex_initialize(&ftx, 1);
Note: See TracChangeset for help on using the changeset viewer.