src/share/vm/prims/whitebox.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/prims/whitebox.hpp	Tue Mar 25 12:59:35 2014
--- new/src/share/vm/prims/whitebox.hpp	Tue Mar 25 12:59:35 2014

*** 1,7 **** --- 1,7 ---- /* ! * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. ! * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 38,57 **** --- 38,55 ---- #define CHECK_JNI_EXCEPTION_(env, value) \ do { \ JavaThread* THREAD = JavaThread::thread_from_jni_environment(env); \ if (HAS_PENDING_EXCEPTION) { \ CLEAR_PENDING_EXCEPTION; \ return(value); \ } \ } while (0) #define CHECK_JNI_EXCEPTION(env) \ do { \ JavaThread* THREAD = JavaThread::thread_from_jni_environment(env); \ if (HAS_PENDING_EXCEPTION) { \ CLEAR_PENDING_EXCEPTION; \ return; \ } \ } while (0) class WhiteBox : public AllStatic {

src/share/vm/prims/whitebox.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File