From 84f87dd4e96bbea42b482a3a23383c8894a40868 Mon Sep 17 00:00:00 2001 From: Matthias Baesken Date: Wed, 12 Mar 2025 12:21:28 +0000 Subject: [PATCH] 8351665: Remove unused UseNUMA in os_aix.cpp Reviewed-by: mdoerr, jkern --- src/hotspot/os/aix/os_aix.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/hotspot/os/aix/os_aix.cpp b/src/hotspot/os/aix/os_aix.cpp index 315c5fde157..aee15e4c55a 100644 --- a/src/hotspot/os/aix/os_aix.cpp +++ b/src/hotspot/os/aix/os_aix.cpp @@ -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);