Changeset 924786bf in mainline
- Timestamp:
- 2018-05-02T16:31:14Z (7 years ago)
- Children:
- d92060f
- Parents:
- 742fc98e
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-02 16:05:44)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-02 16:31:14)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/elf.h
r742fc98e r924786bf 167 167 * Program segment types 168 168 */ 169 #define PT_NULL 0 170 #define PT_LOAD 1 171 #define PT_DYNAMIC 2 172 #define PT_INTERP 3 173 #define PT_NOTE 4 174 #define PT_SHLIB 5 175 #define PT_PHDR 6 176 #define PT_TLS 7 177 #define PT_LOPROC 0x70000000 178 #define PT_HIPROC 0x7fffffff 169 #define PT_NULL 0 170 #define PT_LOAD 1 171 #define PT_DYNAMIC 2 172 #define PT_INTERP 3 173 #define PT_NOTE 4 174 #define PT_SHLIB 5 175 #define PT_PHDR 6 176 #define PT_TLS 7 177 #define PT_LOOS 0x60000000 178 #define PT_GNU_EH_FRAME 0x6474e550 179 #define PT_GNU_STACK 0x6474e551 180 #define PT_GNU_RELRO 0x6474e552 181 #define PT_HIOS 0x6fffffff 182 #define PT_LOPROC 0x70000000 183 #define PT_HIPROC 0x7fffffff 179 184 180 185 /** -
uspace/lib/c/generic/elf/elf_mod.c
r742fc98e r924786bf 342 342 case PT_NOTE: 343 343 break; 344 case PT_GNU_EH_FRAME: 345 case PT_GNU_STACK: 346 case PT_GNU_RELRO: 347 /* Ignore GNU headers, if present. */ 348 break; 344 349 case PT_INTERP: 345 350 elf->info->interp =
Note:
See TracChangeset
for help on using the changeset viewer.