Changes in uspace/lib/c/generic/rtld/rtld.c [64d38cd:4f205248] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/rtld.c
r64d38cd r4f205248 53 53 list_initialize(&runtime_env->modules); 54 54 list_initialize(&runtime_env->imodules); 55 runtime_env->next_bias = 0x2000000; 55 56 runtime_env->program = NULL; 56 57 runtime_env->next_id = 1; … … 120 121 env->program = prog; 121 122 123 /* Work around non-existent memory space allocation. */ 124 env->next_bias = 0x1000000; 125 122 126 /* 123 127 * Now we can continue with loading all other modules.
Note:
See TracChangeset
for help on using the changeset viewer.