78 lines
2.6 KiB
C++
78 lines
2.6 KiB
C++
|
/*
|
||
|
* Copyright (c) 2007, 2018, 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.
|
||
|
*
|
||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||
|
* accompanied this code).
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License version
|
||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
*
|
||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||
|
* or visit www.oracle.com if you need additional information or have any
|
||
|
* questions.
|
||
|
*/
|
||
|
#include "jni.h"
|
||
|
#include "nsk_tools.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifndef JNI_ENV_PTR
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
#define JNI_ENV_ARG_2(x, y) y
|
||
|
#define JNI_ENV_ARG_3(x, y, z) y, z
|
||
|
#define JNI_ENV_ARG_4(x, y, z, a) y, z, a
|
||
|
#define JNI_ENV_PTR(x) x
|
||
|
#else
|
||
|
#define JNI_ENV_ARG_2(x,y) x, y
|
||
|
#define JNI_ENV_ARG_3(x, y, z) x, y, z
|
||
|
#define JNI_ENV_ARG_4(x, y, z, a) x, y, z, a
|
||
|
#define JNI_ENV_PTR(x) (*x)
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|
||
|
JNIEXPORT void JNICALL
|
||
|
Java_nsk_share_locks_LockingThread_nativeJNIMonitorEnter(JNIEnv *env, jobject thisObject, jobject object)
|
||
|
{
|
||
|
jint success;
|
||
|
jclass klass;
|
||
|
|
||
|
success = JNI_ENV_PTR(env)->MonitorEnter(JNI_ENV_ARG_2(env, object));
|
||
|
|
||
|
if(success != 0)
|
||
|
{
|
||
|
NSK_COMPLAIN1("MonitorEnter return non-zero: %d\n", success);
|
||
|
|
||
|
JNI_ENV_PTR(env)->ThrowNew(JNI_ENV_ARG_3(env, JNI_ENV_PTR(env)->FindClass(JNI_ENV_ARG_2(env, "nsk/share/TestJNIError")), "MonitorEnter return non-zero"));
|
||
|
}
|
||
|
|
||
|
klass = JNI_ENV_PTR(env)->GetObjectClass(JNI_ENV_ARG_2(env, thisObject));
|
||
|
|
||
|
JNI_ENV_PTR(env)->CallVoidMethod(JNI_ENV_ARG_3(env, thisObject, JNI_ENV_PTR(env)->GetMethodID(JNI_ENV_ARG_4(env, klass, "createStackFrame", "()V"))));
|
||
|
|
||
|
success = JNI_ENV_PTR(env)->MonitorExit(JNI_ENV_ARG_2(env, object));
|
||
|
|
||
|
if(success != 0)
|
||
|
{
|
||
|
NSK_COMPLAIN1("MonitorExit return non-zero: %d\n", success);
|
||
|
|
||
|
JNI_ENV_PTR(env)->ThrowNew(JNI_ENV_ARG_3(env, JNI_ENV_PTR(env)->FindClass(JNI_ENV_ARG_2(env, "nsk/share/TestJNIError")), "MonitorExit return non-zero"));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|