blob: 05deeeb2371e233a1edd07f73eda32300c170d41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Test JVMTI event notifications
public class events
{
public static native void do_events_tests ();
public static void main (String[] args)
{
System.out.println ("JVMTI event notification tests");
do_events_tests ();
}
}
|