-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #2665 - devnexen:solarish_dl_phdr_api2, r=Amanieu
solarish systems dl_iterate_phdr support
- Loading branch information
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
pub type Elf32_Addr = ::c_ulong; | ||
pub type Elf32_Half = ::c_ushort; | ||
pub type Elf32_Off = ::c_ulong; | ||
pub type Elf32_Sword = ::c_long; | ||
pub type Elf32_Word = ::c_ulong; | ||
pub type Elf32_Lword = ::c_ulonglong; | ||
pub type Elf32_Phdr = __c_anonymous_Elf32_Phdr; | ||
|
||
s! { | ||
pub struct __c_anonymous_Elf32_Phdr { | ||
pub p_type: ::Elf32_Word, | ||
pub p_offset: ::Elf32_Off, | ||
pub p_vaddr: ::Elf32_Addr, | ||
pub p_paddr: ::Elf32_Addr, | ||
pub p_filesz: ::Elf32_Word, | ||
pub p_memsz: ::Elf32_Word, | ||
pub p_flags: ::Elf32_Word, | ||
pub p_align: ::Elf32_Word, | ||
} | ||
|
||
pub struct dl_phdr_info { | ||
pub dlpi_addr: ::Elf32_Addr, | ||
pub dlpi_name: *const ::c_char, | ||
pub dlpi_phdr: *const ::Elf32_Phdr, | ||
pub dlpi_phnum: ::Elf32_Half, | ||
pub dlpi_adds: ::c_ulonglong, | ||
pub dlpi_subs: ::c_ulonglong, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters