Changeset f570cdf in mainline for uspace/lib/c/include/elf/elf_mod.h


Ignore:
Timestamp:
2016-05-24T15:32:57Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c170438
Parents:
dcc150cb (diff), 0a981e3 (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 with mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/elf/elf_mod.h

    rdcc150cb rf570cdf  
    5858} eld_flags_t;
    5959
     60/** TLS info for a module */
     61typedef struct {
     62        /** tdata section image */
     63        void *tdata;
     64        /** Size of tdata section image in bytes */
     65        size_t tdata_size;
     66        /** Size of tbss section */
     67        size_t tbss_size;
     68        /** Alignment of TLS initialization image */
     69        size_t tls_align;
     70} elf_tls_info_t;
     71
    6072/**
    6173 * Some data extracted from the headers are stored here
     
    7082        /** Pointer to the dynamic section */
    7183        void *dynamic;
     84
     85        /** TLS info */
     86        elf_tls_info_t tls;
    7287} elf_finfo_t;
    7388
Note: See TracChangeset for help on using the changeset viewer.