jvmti.cc (_Jv_JVMTI_GetMethodName): New function.

* jvmti.cc (_Jv_JVMTI_GetMethodName): New function.
        (_Jv_JVMTI_Interface): Define GetMethodName.
        * testsuite/libjava.jvmti/getmethodname.java: New file.
        * testsuite/libjava.jvmti/natgetmethodname.cc: New file.
        * testsuite/libjava.jvmti/getmethodname.out: New file.

From-SVN: r121179
This commit is contained in:
Keith Seitz 2007-01-25 18:04:01 +00:00 committed by Keith Seitz
parent 7d52200069
commit ff393407cf
5 changed files with 236 additions and 1 deletions

View file

@ -0,0 +1,10 @@
public class getmethodname
{
public static native void do_getmethodname_tests ();
public static void main (String[] args)
{
System.out.println ("JVMTI GetMethodName tests");
do_getmethodname_tests ();
}
}