Changeset bfdb5af1 in mainline for uspace/srv/loader/main.c
- Timestamp:
- 2011-07-23T13:25:56Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa8053f1
- Parents:
- 90b8d58
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/main.c
r90b8d58 rbfdb5af1 60 60 #include <as.h> 61 61 #include <elf/elf.h> 62 63 #include "elf_load.h" 62 #include <elf/elf_load.h> 64 63 65 64 #ifdef CONFIG_RTLD … … 349 348 350 349 /* Initialize list of loaded modules */ 351 list_initialize(&runtime_env->modules _head);352 list_append(&prog_mod.modules_link, &runtime_env->modules _head);350 list_initialize(&runtime_env->modules); 351 list_append(&prog_mod.modules_link, &runtime_env->modules); 353 352 354 353 /* Pointer to program module. Used as root of the module graph. */
Note:
See TracChangeset
for help on using the changeset viewer.