Changeset f356618 in mainline for uspace/lib/c/include/elf/elf_mod.h
- Timestamp:
- 2016-05-22T21:05:55Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3364b7c
- Parents:
- af2254ec (diff), 3a9414e (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/include/elf/elf_mod.h
raf2254ec rf356618 58 58 } eld_flags_t; 59 59 60 /** TLS info for a module */ 61 typedef 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 60 72 /** 61 73 * Some data extracted from the headers are stored here … … 70 82 /** Pointer to the dynamic section */ 71 83 void *dynamic; 84 85 /** TLS info */ 86 elf_tls_info_t tls; 72 87 } elf_finfo_t; 73 88
Note:
See TracChangeset
for help on using the changeset viewer.