diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2014-11-03 22:12:19 -0800 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2014-11-03 22:15:29 -0800 |
commit | 9d3382d97a2cdc8c8f78c7825ece16f09292fc36 (patch) | |
tree | e257b71f2b37be720ec7eb483135e97100e732f1 /linker/linker.h | |
parent | 69c5d108a5cb44167a04d42ffdad6a39648ed235 (diff) | |
download | android_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.tar.gz android_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.tar.bz2 android_bionic-9d3382d97a2cdc8c8f78c7825ece16f09292fc36.zip |
Revert "Fix dlsym() to take into account RTLD_GLOBAL/LOCAL"
This reverts commit c85e82dde5c4b2accc50a9e17740b9005dfbae6a.
Bug: 18222321
Bug: 18211780
Change-Id: I32f4048bd5ea85dc8a3dfccce8cf141b241ab692
Diffstat (limited to 'linker/linker.h')
-rw-r--r-- | linker/linker.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/linker/linker.h b/linker/linker.h index 6329efda6..fa38c7fef 100644 --- a/linker/linker.h +++ b/linker/linker.h @@ -201,7 +201,7 @@ struct soinfo { #endif bool has_DT_SYMBOLIC; - soinfo(const char* name, const struct stat* file_stat, off64_t file_offset, int rtld_flags); + soinfo(const char* name, const struct stat* file_stat, off64_t file_offset); void CallConstructors(); void CallDestructors(); @@ -216,8 +216,6 @@ struct soinfo { dev_t get_st_dev(); off64_t get_file_offset(); - int get_rtld_flags(); - soinfo_list_t& get_children(); soinfo_list_t& get_parents(); |