Changeset 58563585 in mainline for uspace/lib/c/generic/rtld/module.c


Ignore:
Timestamp:
2016-08-31T11:15:39Z (8 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
10cb47e
Parents:
7a67416
Message:

code review and cstyle cleanup (no change in functionality)

File:
1 edited

Legend:

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

    r7a67416 r58563585  
    151151                }
    152152        }
    153 
     153       
    154154        return NULL; /* Not found */
    155155}
     
    167167        module_t *m;
    168168        int rc;
    169 
     169       
    170170        m = calloc(1, sizeof(module_t));
    171171        if (m == NULL) {
     
    173173                exit(1);
    174174        }
    175 
     175       
    176176        m->rtld = rtld;
    177177        m->id = rtld_get_next_id(rtld);
     
    217217        /* Insert into the list of loaded modules */
    218218        list_append(&m->modules_link, &rtld->modules);
    219 
     219       
    220220        /* Copy TLS info */
    221221        m->tdata = info.tls.tdata;
     
    223223        m->tbss_size = info.tls.tbss_size;
    224224        m->tls_align = info.tls.tls_align;
    225 
     225       
    226226        DPRINTF("tdata at %p size %zu, tbss size %zu\n",
    227227            m->tdata, m->tdata_size, m->tbss_size);
Note: See TracChangeset for help on using the changeset viewer.