Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Verlässliche Systemsoftware
projects
osv
Commits
3027b313
Commit
3027b313
authored
12 years ago
by
Avi Kivity
Browse files
Options
Downloads
Patches
Plain Diff
elf: support PT_PHDR
parent
9f8c65d5
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
elf.cc
+1
-0
1 addition, 0 deletions
elf.cc
elf.hh
+1
-0
1 addition, 0 deletions
elf.hh
with
2 additions
and
0 deletions
elf.cc
+
1
−
0
View file @
3027b313
...
@@ -140,6 +140,7 @@ namespace elf {
...
@@ -140,6 +140,7 @@ namespace elf {
break
;
break
;
case
PT_INTERP
:
case
PT_INTERP
:
case
PT_NOTE
:
case
PT_NOTE
:
case
PT_PHDR
:
case
PT_GNU_STACK
:
case
PT_GNU_STACK
:
case
PT_GNU_RELRO
:
case
PT_GNU_RELRO
:
break
;
break
;
...
...
This diff is collapsed.
Click to expand it.
elf.hh
+
1
−
0
View file @
3027b313
...
@@ -79,6 +79,7 @@ namespace elf {
...
@@ -79,6 +79,7 @@ namespace elf {
PT_DYNAMIC
=
2
,
// Dynamic linking tables
PT_DYNAMIC
=
2
,
// Dynamic linking tables
PT_INTERP
=
3
,
// Program interpreter path name
PT_INTERP
=
3
,
// Program interpreter path name
PT_NOTE
=
4
,
// Note sections
PT_NOTE
=
4
,
// Note sections
PT_PHDR
=
6
,
// program header
PT_TLS
=
7
,
// Thread local storage initial segment
PT_TLS
=
7
,
// Thread local storage initial segment
PT_GNU_EH_FRAME
=
0x6474e550
,
// Exception handling records
PT_GNU_EH_FRAME
=
0x6474e550
,
// Exception handling records
PT_GNU_STACK
=
0x6474e551
,
// Stack permissions record
PT_GNU_STACK
=
0x6474e551
,
// Stack permissions record
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment