blob: 7a5025afca8676eda9f85f59b45890ab99c5e933 [file] [log] [blame]
Ian Rogersdf20fe02011-07-20 20:34:16 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "src/jni_internal.h"
4#include "src/logging.h"
5
6namespace art {
7
8static void JniMonitorEnter(JniEnvironment*, jobject) {
9 LOG(WARNING) << "Unimplemented: JNI Monitor Enter";
10}
11
12static void JniMonitorExit(JniEnvironment*, jobject) {
13 LOG(WARNING) << "Unimplemented: JNI Monitor Exit";
14}
15
16JniEnvironment::JniEnvironment() {
17 monitor_enter_ = &JniMonitorEnter;
18 monitor_exit_ = &JniMonitorExit;
19}
20
21} // namespace art