Changeset 806 for trunk/ithildin/lib/module.c
- Timestamp:
- 06/01/07 11:09:07 (5 years ago)
- File:
-
- 1 edited
-
trunk/ithildin/lib/module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ithildin/lib/module.c
r798 r806 324 324 free(msdp->name); 325 325 free(msdp); 326 } 327 328 /* load "post" dependencies here. A "post" dependency is a module which 329 * we should load after initializing the current module. These are 330 * mostly identicaly to soft dependencies (load failures don't hurt us) 331 * and are just done at a different time. */ 332 if ((deplist = (char **)dlsym(m->handle, "mpostdepends")) != NULL) { 333 if (!load_module_deps(m, deplist, flags, false)) 334 log_warn("some soft dependencies for %s failed to load, " 335 "continuing anyway.", m->name); 326 336 } 327 337
Note: See TracChangeset
for help on using the changeset viewer.
