jvmti-int.h (_Jv_GetJDWP_JVMTIEnv): Declare.

* include/jvmti-int.h (_Jv_GetJDWP_JVMTIEnv): Declare.
        * gnu/classpath/jdwp/natVMVirtualMachine.cc
        (_Jv_GetJDWP_JVMTIEnv): New function.
        * gnu/classpath/jdwp/natVMMethod.cc (getName): Implement.
        (getSignature): Implement.
        (getModifiers): Implement.

From-SVN: r121185
This commit is contained in:
Keith Seitz 2007-01-25 21:05:18 +00:00 committed by Keith Seitz
parent 22fa69dace
commit 161a649cb9
4 changed files with 43 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/* jvmti-int.h -- Internal JVMTI definitions
Copyright (C) 2006 Free Software Foundation, Inc.
Copyright (C) 2006, 2007 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -82,4 +82,7 @@ namespace JVMTI
For speed, this function should only be called after
JVMTI_REQUESTED_EVENT is checked. */
extern void _Jv_JVMTI_PostEvent (jvmtiEvent type, jthread event_thread, ...);
// Returns the jvmtiEnv used by the JDWP backend
extern jvmtiEnv *_Jv_GetJDWP_JVMTIEnv (void);
#endif /* __GCJ_JVMTI_INT_H__ */