Revert "Load libraries in breadth-first order"

This reverts commit a3ad450a2e.

(cherry picked from commit 498eb18b82)

Change-Id: Iec7eab83d0c0ed1604e1e8ea3f9e9d0ce1d29680
This commit is contained in:
Dmitriy Ivanov
2014-09-05 14:57:59 -07:00
parent 8de1ddece0
commit c0133a73b6
11 changed files with 178 additions and 758 deletions

View File

@@ -204,7 +204,6 @@ struct soinfo {
void CallConstructors();
void CallDestructors();
void CallPreInitConstructors();
bool PrelinkImage();
bool LinkImage(const android_dlextinfo* extinfo);
void add_child(soinfo* child);
@@ -218,7 +217,6 @@ struct soinfo {
bool get_has_ifuncs();
soinfo_list_t& get_children();
soinfo_list_t& get_parents();
bool inline has_min_version(uint32_t min_version) {
return (flags & FLAG_NEW_SOINFO) != 0 && version >= min_version;