Changeset 6adb775f in mainline for uspace/lib/c/include/elf/elf_mod.h
- Timestamp:
- 2016-04-25T16:46:31Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 32573ff
- Parents:
- dc0d8b52
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/elf/elf_mod.h
rdc0d8b52 r6adb775f 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 } elf_tls_info_t; 69 60 70 /** 61 71 * Some data extracted from the headers are stored here … … 70 80 /** Pointer to the dynamic section */ 71 81 void *dynamic; 82 83 /** TLS info */ 84 elf_tls_info_t tls; 72 85 } elf_finfo_t; 73 86
Note:
See TracChangeset
for help on using the changeset viewer.