src/share/vm/interpreter/interpreterRuntime.cpp

changeset 1648
6deeaebad47a
parent 1577
4ce7240d622c
child 1861
2338d41fbd81
     1.1 --- a/src/share/vm/interpreter/interpreterRuntime.cpp	Wed Jan 27 22:38:37 2010 -0800
     1.2 +++ b/src/share/vm/interpreter/interpreterRuntime.cpp	Mon Feb 01 17:35:05 2010 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1997-2009 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -397,7 +397,7 @@
    1.11  
    1.12    // notify JVMTI of an exception throw; JVMTI will detect if this is a first
    1.13    // time throw or a stack unwinding throw and accordingly notify the debugger
    1.14 -  if (JvmtiExport::can_post_exceptions()) {
    1.15 +  if (JvmtiExport::can_post_on_exceptions()) {
    1.16      JvmtiExport::post_exception_throw(thread, h_method(), bcp(thread), h_exception());
    1.17    }
    1.18  
    1.19 @@ -426,7 +426,7 @@
    1.20    }
    1.21    // notify debugger of an exception catch
    1.22    // (this is good for exceptions caught in native methods as well)
    1.23 -  if (JvmtiExport::can_post_exceptions()) {
    1.24 +  if (JvmtiExport::can_post_on_exceptions()) {
    1.25      JvmtiExport::notice_unwind_due_to_exception(thread, h_method(), handler_pc, h_exception(), (handler_pc != NULL));
    1.26    }
    1.27  

mercurial