diff options
Diffstat (limited to 'init/sigchld_handler.cpp')
-rw-r--r-- | init/sigchld_handler.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/init/sigchld_handler.cpp b/init/sigchld_handler.cpp index 0b0332429..987b2f98c 100644 --- a/init/sigchld_handler.cpp +++ b/init/sigchld_handler.cpp @@ -29,7 +29,6 @@ #include <android-base/stringprintf.h> #include "init.h" -#include "property_service.h" #include "service.h" using android::base::StringPrintf; @@ -61,9 +60,7 @@ static bool ReapOneProcess() { std::string wait_string; Service* service = nullptr; - if (PropertyChildReap(pid)) { - name = "Async property child"; - } else if (SubcontextChildReap(pid)) { + if (SubcontextChildReap(pid)) { name = "Subcontext"; } else { service = ServiceList::GetInstance().FindService(pid, &Service::pid); |