Changeset d3b8c1f in mainline for init/init.c
- Timestamp:
- 2006-04-23T16:34:45Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4309741
- Parents:
- cdafab1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
init/init.c
rcdafab1 rd3b8c1f 95 95 { 96 96 printf("Writing to good memory\n"); 97 mremap(&_heap, 120000, 0);97 as_area_resize(&_heap, 120000, 0); 98 98 printf("%P\n", ((char *)&_heap)); 99 99 printf("%P\n", ((char *)&_heap) + 80000); 100 100 *(((char *)&_heap) + 80000) = 10; 101 101 printf("Making small\n"); 102 mremap(&_heap, 16000, 0);102 as_area_resize(&_heap, 16000, 0); 103 103 printf("Failing..\n"); 104 104 *((&_heap) + 80000) = 10; … … 306 306 // test_slam(); 307 307 308 printf("Userspace task, taskid=%llX\n", get_task_id());308 printf("Userspace task, taskid=%llX\n", task_get_id()); 309 309 310 310 futex_initialize(&ftx, 1);
Note:
See TracChangeset
for help on using the changeset viewer.