Changeset 04803bf in mainline for uspace/lib/c/rtld/module.c
- Timestamp:
- 2011-03-21T22:00:17Z (14 years ago)
- 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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/rtld/module.c
rb50b5af2 r04803bf 90 90 * path components are ignored. 91 91 */ 92 module_t *module_find(c har *name)92 module_t *module_find(const char *name) 93 93 { 94 94 link_t *head = &runtime_env->modules_head; … … 96 96 link_t *cur; 97 97 module_t *m; 98 c har *p, *soname;98 const char *p, *soname; 99 99 100 100 /* … … 123 123 * Currently this trivially tries to load '/<name>'. 124 124 */ 125 module_t *module_load(c har *name)125 module_t *module_load(const char *name) 126 126 { 127 127 elf_info_t info;
Note:
See TracChangeset
for help on using the changeset viewer.