Skip to content

Commit 15f89b3

Browse files
committed
JDK-8262491: bsd_aarch64 part
1 parent 1b55288 commit 15f89b3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/hotspot/os_cpu/bsd_aarch64/vm_version_bsd_aarch64.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ void VM_Version::get_os_cpu_info() {
9292
_cpu = CPU_APPLE;
9393
}
9494

95+
void VM_Version::get_compatible_board(char *buf, int buflen) {
96+
assert(buf != NULL, "invalid argument");
97+
assert(buflen >= 1, "invalid argument");
98+
*buf = '\0';
99+
}
100+
95101
#ifdef __APPLE__
96102

97103
bool VM_Version::is_cpu_emulated() {

0 commit comments

Comments
 (0)