projects
/
pyelftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11cd62f
)
elfdump: handles the extern symbol case in the syminfo table
author
Yann Rouillard
<yann@pleiades.fr.eu.org>
Fri, 10 May 2013 12:43:03 +0000
(14:43 +0200)
committer
Yann Rouillard
<yann@pleiades.fr.eu.org>
Fri, 10 May 2013 12:43:03 +0000
(14:43 +0200)
scripts/elfdump.py
patch
|
blob
|
history
diff --git
a/scripts/elfdump.py
b/scripts/elfdump.py
index b96f17c33135798cd7649a6015e322d7d77aab37..eb149dd85468615c0ce335439b30af4b784e4b8a 100755
(executable)
--- a/
scripts/elfdump.py
+++ b/
scripts/elfdump.py
@@
-99,6
+99,8
@@
class Elfdump(object):
boundto = '<self>'
elif syminfo['si_boundto'] == 0xfffe:
boundto = '<parent>'
+ elif syminfo['si_boundto'] == 0xfffc:
+ boundto = '<extern>'
elif syminfo['si_boundto'] == 0xfffd:
boundto = ''
else: