hotspot/src/share/vm/runtime/vm_version.cpp
const char* Abstract_VM_Version::vm_vendor() {
#ifdef VENDOR
return XSTR(VENDOR);
#else
return JDK_Version::is_gte_jdk17x_version() ?
"Oracle Corporation" : "Sun Microsystems Inc.";
#endif
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.