commit | c1be9f2b776b4900e0603013f7c4d84e534f0bb0 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Apr 14 00:10:36 2017 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Apr 14 00:10:38 2017 +0000 |
tree | 70ce77bd355480b89a721e6a28a6ed563036c6c2 | |
parent | 9fdafe8fe49d40ae50ddab534b88cf03bfa0f995 [diff] | |
parent | e286b6454e1ef7713596d9f87ebe80d96016604f [diff] |
Merge "ART: Use _exit in dex2oat"
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index b4ea20b..81566c4 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc
@@ -2931,7 +2931,7 @@ // time (bug 10645725) unless we're a debug build or running on valgrind. Note: The Dex2Oat class // should not destruct the runtime in this case. if (!art::kIsDebugBuild && (RUNNING_ON_MEMORY_TOOL == 0)) { - exit(result); + _exit(result); } return result; }