[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Add Verneed and Vernaux
From: |
Mike Hommey |
Subject: |
[PATCH] Add Verneed and Vernaux |
Date: |
Thu, 17 Aug 2023 16:06:22 +0900 |
---
elf-os-gnu.pk | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/elf-os-gnu.pk b/elf-os-gnu.pk
index 3115945..d130cb9 100644
--- a/elf-os-gnu.pk
+++ b/elf-os-gnu.pk
@@ -136,3 +136,23 @@ elf_config.add_enum
There are further extensions to p_type but currently they are all
architecture specific and should be documented in the relevant ABIs.
*/
+
+type Elf_Verneed =
+ struct
+ {
+ Elf_Half vn_version;
+ Elf_Half vn_cnt;
+ Elf_Word vn_file;
+ Elf_Word vn_aux;
+ Elf_Word vn_next;
+ };
+
+type Elf_Vernaux =
+ struct
+ {
+ Elf_Word vna_hash;
+ Elf_Half vna_flags;
+ Elf_Half vna_other;
+ Elf_Word vna_name;
+ Elf_Word vna_next;
+ };
--
2.41.0.3.g1cb8d410ac
- [PATCH] Add Verneed and Vernaux,
Mike Hommey <=