Changeset bfdb5af1 in mainline for uspace/srv/loader/main.c


Ignore:
Timestamp:
2011-07-23T13:25:56Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aa8053f1
Parents:
90b8d58
Message:

Fix build with dynamic linking enabled.
Eliminate surplus copy of elf_load.c, elf_load.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/loader/main.c

    r90b8d58 rbfdb5af1  
    6060#include <as.h>
    6161#include <elf/elf.h>
    62 
    63 #include "elf_load.h"
     62#include <elf/elf_load.h>
    6463
    6564#ifdef CONFIG_RTLD
     
    349348
    350349        /* 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);
    353352
    354353        /* Pointer to program module. Used as root of the module graph. */
Note: See TracChangeset for help on using the changeset viewer.