hotspot/src/share/vm/prims/jvmtiEnvBase.cpp
changeset 1403 3be05c51cf44
parent 1 489c9b5090e2
child 1623 a0dd9009e992
equal deleted inserted replaced
1402:ccb40ce62b79 1403:3be05c51cf44
   119   _magic = JVMTI_MAGIC;
   119   _magic = JVMTI_MAGIC;
   120 
   120 
   121   JvmtiEventController::env_initialize((JvmtiEnv*)this);
   121   JvmtiEventController::env_initialize((JvmtiEnv*)this);
   122 
   122 
   123 #ifdef JVMTI_TRACE
   123 #ifdef JVMTI_TRACE
   124   _jvmti_external.functions = strlen(TraceJVMTI)? &jvmtiTrace_Interface : &jvmti_Interface;
   124   _jvmti_external.functions = TraceJVMTI != NULL ? &jvmtiTrace_Interface : &jvmti_Interface;
   125 #else
   125 #else
   126   _jvmti_external.functions = &jvmti_Interface;
   126   _jvmti_external.functions = &jvmti_Interface;
   127 #endif
   127 #endif
   128 }
   128 }
   129 
   129