dummyagent.c 193 B

1234567891011
  1. #include <jvmti.h>
  2. JNIEXPORT jint JNICALL
  3. Agent_OnLoad (JavaVM *vm, char *options, void *reserved)
  4. {
  5. // nothing -- this is just a stub to get JVMTI properly
  6. // initialized
  7. return 0;
  8. }