Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(740)

Unified Diff: src/include/elf32.h

Issue 14757008: Minidumper: Get the nexe's build ID from PT_NOTE when available (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Comment Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/include/elf_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/include/elf32.h
diff --git a/src/include/elf32.h b/src/include/elf32.h
index 52163b062c7cc7177a7b8a318dc314a6b959f671..b12abfab647b1f617ee162246bb58cef8b442e62 100644
--- a/src/include/elf32.h
+++ b/src/include/elf32.h
@@ -84,6 +84,12 @@ typedef struct {
Elf32_Word sh_entsize;
} Elf32_Shdr;
+typedef struct {
+ Elf32_Word n_namesz;
+ Elf32_Word n_descsz;
+ Elf32_Word n_type;
+} Elf32_Nhdr;
+
/*
* The auxiliary vector is passed on the stack between ELF loaders,
* dynamic linkers, and program startup code. The gratuitous union
« no previous file with comments | « no previous file | src/include/elf_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698