diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2015-04-30 20:17:03 -0700 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2015-05-01 15:45:51 -0700 |
commit | dc145b510640202a60b0dfaef9d56cd8fc1c05a9 (patch) | |
tree | d59d6a41d9300ec13293b41e8eb3d05d82897447 /linker/linker.h | |
parent | f92a417d07d70730fda15d7d98d36968a6a7362e (diff) | |
download | android_bionic-dc145b510640202a60b0dfaef9d56cd8fc1c05a9.tar.gz android_bionic-dc145b510640202a60b0dfaef9d56cd8fc1c05a9.tar.bz2 android_bionic-dc145b510640202a60b0dfaef9d56cd8fc1c05a9.zip |
Lookup version info when relocating mips got
Bug: http://b/20693971
Bug: http://b/20139821
Change-Id: I28bd3bc44dafe048761b2c598facfe20320128c4
(cherry picked from commit f39cb63603da949325b4d186e870d0c3de01eb30)
Diffstat (limited to 'linker/linker.h')
-rw-r--r-- | linker/linker.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linker/linker.h b/linker/linker.h index 109aeb720..dc8c6e08a 100644 --- a/linker/linker.h +++ b/linker/linker.h @@ -247,7 +247,9 @@ struct soinfo { uint32_t mips_symtabno_; uint32_t mips_local_gotno_; uint32_t mips_gotsym_; - bool mips_relocate_got(const soinfo_list_t& global_group, const soinfo_list_t& local_group); + bool mips_relocate_got(const VersionTracker& version_tracker, + const soinfo_list_t& global_group, + const soinfo_list_t& local_group); #endif size_t ref_count_; |