diff options
author | Keith Seitz <keiths@redhat.com> | 2006-07-20 19:30:30 +0000 |
---|---|---|
committer | Keith Seitz <kseitz@gcc.gnu.org> | 2006-07-20 19:30:30 +0000 |
commit | 94f473ee2c02f0e21e3c328169424bbfd491e893 (patch) | |
tree | 74b5eb32122e2c9c320ddc672d207de4a0a96ef1 /libjava/include/jvm.h | |
parent | 6b1fd291b5ebfd105e6fd50ec6d5c61d34cbbb2e (diff) | |
download | gcc-94f473ee2c02f0e21e3c328169424bbfd491e893.zip gcc-94f473ee2c02f0e21e3c328169424bbfd491e893.tar.gz gcc-94f473ee2c02f0e21e3c328169424bbfd491e893.tar.bz2 |
jvm.h (_Jv_GetJVMTIEnv): Declare.
* include/jvm.h (_Jv_GetJVMTIEnv): Declare.
* jni.cc (_Jv_JNI_GetEnv): Handle JVMTI requests.
* jvmti.cc: New file.
* Makefile.am (libgcj_la_SOURCES): Add jvmti.cc.
* Makefile.in: Regenerate.
From-SVN: r115629
Diffstat (limited to 'libjava/include/jvm.h')
-rw-r--r-- | libjava/include/jvm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index d99443c..8a970c0 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -573,6 +573,10 @@ void _Jv_FreeJNIEnv (_Jv_JNIEnv *); struct _Jv_JavaVM; _Jv_JavaVM *_Jv_GetJavaVM (); +/* Get the JVMTI environment */ +struct _Jv_JVMTIEnv; +_Jv_JVMTIEnv *_Jv_GetJVMTIEnv (void); + // Some verification functions from defineclass.cc. bool _Jv_VerifyFieldSignature (_Jv_Utf8Const*sig); bool _Jv_VerifyMethodSignature (_Jv_Utf8Const*sig); |