Changeset d30e067 in mainline for uspace/lib/c/generic/libc.c
- Timestamp:
- 2025-03-02T20:02:33Z (5 months ago)
- Children:
- 8cdf360
- Parents:
- 7debda3 (diff), 4285f384 (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r7debda3 rd30e067 96 96 97 97 #ifdef CONFIG_RTLD 98 if (__pcb != NULL && __pcb->rtld_runtime != NULL) { 98 if (__pcb == NULL) { 99 /* 100 * A binary loaded by kernel, not the loader. 101 * Noop - code loaded by kernel doesn't need RTLD. 102 */ 103 } else { 104 assert(__pcb->rtld_runtime != NULL); 99 105 runtime_env = (rtld_t *) __pcb->rtld_runtime; 100 } else {101 if (rtld_init_static() != EOK)102 abort();103 106 } 104 107 #endif
Note:
See TracChangeset
for help on using the changeset viewer.