Changeset eebecdc in mainline for uspace/lib/c
- Timestamp:
- 2025-03-13T18:30:36Z (4 months ago)
- Children:
- e3e53cc
- Parents:
- e494d7b (diff), da54714 (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. - Location:
- uspace/lib/c
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/module.c
re494d7b reebecdc 99 99 100 100 DPRINTF("prog tdata at %p size %zu, tbss size %zu\n", 101 module->tdata, module->tdata_size, module->tbss_size);101 module->tdata, module->tdata_size, module->tbss_size); 102 102 103 103 list_append(&module->modules_link, &rtld->modules); -
uspace/lib/c/generic/rtld/symbol.c
re494d7b reebecdc 65 65 static elf_symbol_t *def_find_in_module(const char *name, module_t *m) 66 66 { 67 if (m->dyn.hash == NULL) { 68 /* No hash table */ 69 return NULL; 70 } 71 67 72 elf_symbol_t *sym_table; 68 73 elf_symbol_t *s, *sym; -
uspace/lib/c/meson.build
re494d7b reebecdc 1 1 # 2 # Copyright (c) 202 4Jiri Svoboda2 # Copyright (c) 2025 Jiri Svoboda 3 3 # Copyright (c) 2005 Martin Decky 4 4 # Copyright (c) 2007 Jakub Jermar … … 122 122 'generic/malloc.c', 123 123 'generic/rndgen.c', 124 'generic/shutdown.c', 124 125 'generic/stdio/scanf.c', 125 126 'generic/stdio/sprintf.c',
Note:
See TracChangeset
for help on using the changeset viewer.