< prev index next >

test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/hotswap/HS302/hs302t004/hs302t004.cpp

Print this page
rev 52215 : 8212770: Remove spaces before/after () for vmTestbase/jvmti/[s-u]
Summary:
Reviewed-by:

*** 40,51 **** jvmti_env->GetClassSignature(klass, &className, &generic); if (strcmp(className,CLASS_NAME) == 0) { char fileName[512]; nsk_jvmti_getFileName(redefineNumber, FILE_NAME, fileName, sizeof(fileName)/sizeof(char)); ! nsk_jvmti_disableNotification(jvmti_env, JVMTI_EVENT_CLASS_PREPARE, NULL ); ! if ( nsk_jvmti_redefineClass(jvmti_env, klass,fileName) == NSK_TRUE ) { nsk_printf("Redefine successful ..\n"); } else { nsk_printf("# error :: Redefine failed..\n"); } } --- 40,51 ---- jvmti_env->GetClassSignature(klass, &className, &generic); if (strcmp(className,CLASS_NAME) == 0) { char fileName[512]; nsk_jvmti_getFileName(redefineNumber, FILE_NAME, fileName, sizeof(fileName)/sizeof(char)); ! nsk_jvmti_disableNotification(jvmti_env, JVMTI_EVENT_CLASS_PREPARE, NULL); ! if (nsk_jvmti_redefineClass(jvmti_env, klass,fileName) == NSK_TRUE) { nsk_printf("Redefine successful ..\n"); } else { nsk_printf("# error :: Redefine failed..\n"); } }
*** 65,81 **** jint Agent_Initialize(JavaVM *vm, char *options, void *reserved) { jint rc ; jvmtiEnv * jvmti; nsk_printf("Agent:: VM.. Started..\n"); rc=vm->GetEnv((void **)&jvmti, JVMTI_VERSION_1_1); ! if ( rc!= JNI_OK ) { nsk_printf("Agent:: Could not load JVMTI interface \n"); return JNI_ERR; } else { jvmtiCapabilities caps; jvmtiEventCallbacks eventCallbacks; ! if (nsk_jvmti_parseOptions(options) == NSK_FALSE ) { nsk_printf("# error agent Failed to parse options \n"); return JNI_ERR; } memset(&caps, 0, sizeof(caps)); caps.can_redefine_classes = 1; --- 65,81 ---- jint Agent_Initialize(JavaVM *vm, char *options, void *reserved) { jint rc ; jvmtiEnv * jvmti; nsk_printf("Agent:: VM.. Started..\n"); rc=vm->GetEnv((void **)&jvmti, JVMTI_VERSION_1_1); ! if (rc!= JNI_OK) { nsk_printf("Agent:: Could not load JVMTI interface \n"); return JNI_ERR; } else { jvmtiCapabilities caps; jvmtiEventCallbacks eventCallbacks; ! if (nsk_jvmti_parseOptions(options) == NSK_FALSE) { nsk_printf("# error agent Failed to parse options \n"); return JNI_ERR; } memset(&caps, 0, sizeof(caps)); caps.can_redefine_classes = 1;
*** 86,96 **** rc=jvmti->SetEventCallbacks(&eventCallbacks, sizeof(eventCallbacks)); if (rc != JVMTI_ERROR_NONE) { nsk_printf(" Agent:: Error occured while setting event call back \n"); return JNI_ERR; } ! if ( nsk_jvmti_enableNotification(jvmti, JVMTI_EVENT_CLASS_PREPARE, NULL) == NSK_TRUE ) { nsk_printf(" Enabled. noftification.."); } else { nsk_printf(" Failed to Enable .."); } } --- 86,96 ---- rc=jvmti->SetEventCallbacks(&eventCallbacks, sizeof(eventCallbacks)); if (rc != JVMTI_ERROR_NONE) { nsk_printf(" Agent:: Error occured while setting event call back \n"); return JNI_ERR; } ! if (nsk_jvmti_enableNotification(jvmti, JVMTI_EVENT_CLASS_PREPARE, NULL) == NSK_TRUE) { nsk_printf(" Enabled. noftification.."); } else { nsk_printf(" Failed to Enable .."); } }
< prev index next >