diff options
author | 2017-01-16 18:53:59 -0800 | |
---|---|---|
committer | 2017-01-18 09:24:52 -0800 | |
commit | 0bd1a16e91cd7d602fff3f4b0c8f98e7f3fc4e44 (patch) | |
tree | 70803b1a060121d78829e7d950814fe785d5ae25 | |
parent | c8089540ccf0f1c43d8db3828f21d489b28a4013 (diff) |
ART: Align jvmti.h with jni.h
Android follows the JNI specification and names the JNI function
table without the underscore.
Bug: 34343708
Test: m test-art-host
Change-Id: I05d73734545f9077ad66aceb335bdc8a76603a71
-rw-r--r-- | runtime/openjdkjvmti/jvmti.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/openjdkjvmti/jvmti.h b/runtime/openjdkjvmti/jvmti.h index ee708cb193..de07c163fc 100644 --- a/runtime/openjdkjvmti/jvmti.h +++ b/runtime/openjdkjvmti/jvmti.h @@ -74,7 +74,7 @@ typedef jobject jthreadGroup; typedef jlong jlocation; struct _jrawMonitorID; typedef struct _jrawMonitorID *jrawMonitorID; -typedef struct JNINativeInterface_ jniNativeInterface; +typedef struct JNINativeInterface jniNativeInterface; /* Constants */ |