Changeset eebecdc in mainline for uspace/lib/c


Ignore:
Timestamp:
2025-03-13T18:30:36Z (4 months ago)
Author:
Miroslav Cimerman <mc@…>
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.
Message:

merge upstream/master into helenraid

Location:
uspace/lib/c
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/rtld/module.c

    re494d7b reebecdc  
    9999
    100100        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);
    102102
    103103        list_append(&module->modules_link, &rtld->modules);
  • uspace/lib/c/generic/rtld/symbol.c

    re494d7b reebecdc  
    6565static elf_symbol_t *def_find_in_module(const char *name, module_t *m)
    6666{
     67        if (m->dyn.hash == NULL) {
     68                /* No hash table */
     69                return NULL;
     70        }
     71
    6772        elf_symbol_t *sym_table;
    6873        elf_symbol_t *s, *sym;
  • uspace/lib/c/meson.build

    re494d7b reebecdc  
    11#
    2 # Copyright (c) 2024 Jiri Svoboda
     2# Copyright (c) 2025 Jiri Svoboda
    33# Copyright (c) 2005 Martin Decky
    44# Copyright (c) 2007 Jakub Jermar
     
    122122        'generic/malloc.c',
    123123        'generic/rndgen.c',
     124        'generic/shutdown.c',
    124125        'generic/stdio/scanf.c',
    125126        'generic/stdio/sprintf.c',
Note: See TracChangeset for help on using the changeset viewer.