Changeset 04803bf in mainline for uspace/lib/c/rtld/module.c


Ignore:
Timestamp:
2011-03-21T22:00:17Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
143932e3
Parents:
b50b5af2 (diff), 7308e84 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes (needs fixes).

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/rtld/module.c

    rb50b5af2 r04803bf  
    9090 * path components are ignored.
    9191 */
    92 module_t *module_find(char *name)
     92module_t *module_find(const char *name)
    9393{
    9494        link_t *head = &runtime_env->modules_head;
     
    9696        link_t *cur;
    9797        module_t *m;
    98         char *p, *soname;
     98        const char *p, *soname;
    9999
    100100        /*
     
    123123 * Currently this trivially tries to load '/<name>'.
    124124 */
    125 module_t *module_load(char *name)
     125module_t *module_load(const char *name)
    126126{
    127127        elf_info_t info;
Note: See TracChangeset for help on using the changeset viewer.