changeset 262:37a36a477911

Bug 3536: Cannot kill Java process on error Reviewed-by: yasuenag https://github.com/HeapStats/heapstats/pull/136
author ykubota
date Mon, 12 Mar 2018 15:21:57 +0900
parents 3215a746cc9d
children ef2f9bc6aecb
files ChangeLog agent/src/heapstats-engines/libmain.cpp
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Feb 05 16:03:30 2018 +0900
+++ b/ChangeLog	Mon Mar 12 15:21:57 2018 +0900
@@ -1,12 +1,16 @@
+2018-03-12 KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
+
+	* Bug 3536: Cannot kill Java process on error
+
 2018-02-05 Yasumasa Suenaga <yasuenag@gmail.com>
 
 	* Bug 3515: Cannot build HeapStats Agent on CentOS 6 after merging TBB
 
-2017-01-25 KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
+2018-01-25 KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
 
 	* Bug 3513: Move test cases for race-conditions to another repository
 
-2017-01-23 KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
+2018-01-23 KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
 
 	* Bug 3512: Drop SSE3 instruction set supporting
 
--- a/agent/src/heapstats-engines/libmain.cpp	Mon Feb 05 16:03:30 2018 +0900
+++ b/agent/src/heapstats-engines/libmain.cpp	Mon Mar 12 15:21:57 2018 +0900
@@ -427,10 +427,6 @@
  * \warning This function is always no return.
  */
 void forcedAbortJVM(jvmtiEnv *jvmti, JNIEnv *env, const char *causeMsg) {
-  /* Terminate all event and thread. */
-  OnVMDeath(jvmti, env);
-  logger->flush();
-
   /* Output last message. */
   logger->printCritMsg("Aborting JVM by HeapStats. cause: %s", causeMsg);
   logger->flush();