diff options
author | Kay Ramme <kr@openoffice.org> | 2001-01-31 15:43:39 +0000 |
---|---|---|
committer | Kay Ramme <kr@openoffice.org> | 2001-01-31 15:43:39 +0000 |
commit | 4763e6e5bb406f4439d0ca0ddc1898b33b35d3ab (patch) | |
tree | b971e41fa4feed7bd43b1fb9c16397e61769c79f | |
parent | fa0cb62f8f9aa8e657dc2cccf859eefe524dcadd (diff) |
abort when java dies
-rw-r--r-- | stoc/source/javavm/javavm.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stoc/source/javavm/javavm.cxx b/stoc/source/javavm/javavm.cxx index 4c918e5bb2d5..76c1f5919cf9 100644 --- a/stoc/source/javavm/javavm.cxx +++ b/stoc/source/javavm/javavm.cxx @@ -2,9 +2,9 @@ * * $RCSfile: javavm.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: kr $ $Date: 2000-12-19 10:20:57 $ + * last change: $Author: kr $ $Date: 2001-01-31 16:43:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -146,6 +146,7 @@ namespace stoc_javavm { static void JNICALL vm_abort() { OSL_TRACE("vm_abort\n"); + abort(); } typedef ::std::hash_map<sal_uInt32, sal_uInt32> UINT32_UINT32_HashMap; |