hotspot/src/share/vm/prims/jvmtiRawMonitor.cpp
JvmtiRawMonitor::JvmtiRawMonitor(const char *name) {
{- -------------------------------------------
(1) フィールドの初期化
---------------------------------------- -}
#ifdef ASSERT
_name = strcpy(NEW_C_HEAP_ARRAY(char, strlen(name) + 1), name);
#else
_name = NULL;
#endif
_magic = JVMTI_RM_MAGIC;
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.