summaryrefslogtreecommitdiffstats
path: root/src/runtime.cc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-02-02 16:32:16 -0800
committerElliott Hughes <enh@google.com>2012-02-02 17:07:51 -0800
commit8cf5bc0ab8742df107f0f4fc8ec0e991b6568f11 (patch)
tree2c21156aa0314dfa4f5b0cea9489e3aa16ebe743 /src/runtime.cc
parentc27273f0508fb56ba35bead311151fbe45724d35 (diff)
downloadart-8cf5bc0ab8742df107f0f4fc8ec0e991b6568f11.zip
art-8cf5bc0ab8742df107f0f4fc8ec0e991b6568f11.tar.gz
art-8cf5bc0ab8742df107f0f4fc8ec0e991b6568f11.tar.bz2
Simple heap trimming.
Change-Id: I8a94b637e64c6b5586db3c41b6e9230e7c8250c8
Diffstat (limited to 'src/runtime.cc')
-rw-r--r--src/runtime.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime.cc b/src/runtime.cc
index 306bb87..60e875b 100644
--- a/src/runtime.cc
+++ b/src/runtime.cc
@@ -553,6 +553,7 @@ void Runtime::StartDaemonThreads() {
jmethodID mid = env->GetStaticMethodID(c.get(), "start", "()V");
CHECK(mid != NULL);
env->CallStaticVoidMethod(c.get(), mid);
+ CHECK(!env->ExceptionCheck());
VLOG(startup) << "Runtime::StartDaemonThreads exiting";
}