8351665: Remove unused UseNUMA in os_aix.cpp

Reviewed-by: mdoerr, jkern
This commit is contained in:
Matthias Baesken 2025-03-12 12:21:28 +00:00
parent 4be502ea38
commit 84f87dd4e9

View File

@ -839,13 +839,6 @@ bool os::create_attached_thread(JavaThread* thread) {
thread->set_osthread(osthread);
if (UseNUMA) {
int lgrp_id = os::numa_get_group_id();
if (lgrp_id != -1) {
thread->set_lgrp_id(lgrp_id);
}
}
// initialize signal mask for this thread
// and save the caller's signal mask
PosixSignals::hotspot_sigmask(thread);