Changeset 967e7a1 in mainline for uspace/lib/c/generic/rtld/rtld.c
- Timestamp:
- 2019-05-26T13:21:50Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bdca26a
- Parents:
- a78cdcd
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-05-17 13:04:30)
- git-committer:
- Jakub Jermář <jakub@…> (2019-05-26 13:21:50)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/rtld.c
ra78cdcd r967e7a1 125 125 126 126 DPRINTF("Load all program dependencies\n"); 127 module_load_deps(prog, 0); 127 errno_t rc = module_load_deps(prog, 0); 128 if (rc != EOK) { 129 return rc; 130 } 128 131 129 132 /* Compute static TLS size */
Note:
See TracChangeset
for help on using the changeset viewer.