test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t003/hs302t003.cpp
changeset 57683 1cf884e437ea
parent 57629 7aba63ce3b3a
child 58679 9c3209ff7550
equal deleted inserted replaced
57681:41f2f2829a09 57683:1cf884e437ea
    42   if (strcmp(className,CLASS_NAME) == 0) {
    42   if (strcmp(className,CLASS_NAME) == 0) {
    43       char fileName[512];
    43       char fileName[512];
    44 
    44 
    45       nsk_jvmti_getFileName(redefineNumber, FILE_NAME, fileName, sizeof(fileName)/sizeof(char));
    45       nsk_jvmti_getFileName(redefineNumber, FILE_NAME, fileName, sizeof(fileName)/sizeof(char));
    46       nsk_jvmti_disableNotification(jvmti_env, JVMTI_EVENT_CLASS_PREPARE, NULL);
    46       nsk_jvmti_disableNotification(jvmti_env, JVMTI_EVENT_CLASS_PREPARE, NULL);
    47       if (nsk_jvmti_redefineClass(jvmti_env, klass, fileName) == NSK_TRUE) {
    47       if (nsk_jvmti_redefineClass(jvmti_env, klass, fileName)) {
    48           nsk_printf("Redefine successful ..\n");
    48           nsk_printf("Redefine successful ..\n");
    49       } else {
    49       } else {
    50           nsk_printf("Redefine failed ..     \n");
    50           nsk_printf("Redefine failed ..     \n");
    51       }
    51       }
    52   }
    52   }
    91         rc=jvmti->SetEventCallbacks(&eventCallbacks, sizeof(eventCallbacks));
    91         rc=jvmti->SetEventCallbacks(&eventCallbacks, sizeof(eventCallbacks));
    92         if (rc != JVMTI_ERROR_NONE) {
    92         if (rc != JVMTI_ERROR_NONE) {
    93             nsk_printf(" Agent:: Error occured while setting event call back \n");
    93             nsk_printf(" Agent:: Error occured while setting event call back \n");
    94             return JNI_ERR;
    94             return JNI_ERR;
    95         }
    95         }
    96         if (nsk_jvmti_enableNotification(jvmti, JVMTI_EVENT_CLASS_PREPARE, NULL) == NSK_TRUE) {
    96         if (nsk_jvmti_enableNotification(jvmti, JVMTI_EVENT_CLASS_PREPARE, NULL)) {
    97             nsk_printf(" Enabled. noftification..");
    97             nsk_printf(" Enabled. noftification..");
    98         } else {
    98         } else {
    99             nsk_printf(" Failed to Enable ..");
    99             nsk_printf(" Failed to Enable ..");
   100         }
   100         }
   101     }
   101     }