mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
13 lines
241 B
Java
13 lines
241 B
Java
// 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 ();
|
|
}
|
|
}
|