Changeset bfdb5af1 in mainline for uspace/srv
- Timestamp:
- 2011-07-23T13:25:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aa8053f1
- Parents:
- 90b8d58
- Location:
- uspace/srv/loader
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/loader/Makefile
r90b8d58 rbfdb5af1 39 39 LINKER_SCRIPT = $(LIBC_PREFIX)/arch/$(UARCH)/_link-loader.ld 40 40 41 EXTRA_CFLAGS = -Iinclude42 43 41 BINARY = loader 44 42 STATIC_ONLY = y … … 46 44 GENERIC_SOURCES = \ 47 45 main.c \ 48 elf_load.c \49 46 interp.s 50 47 -
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.