From 4673f0354e902c327f3e690f0a6a8c696eb6f843 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Thu, 13 Oct 2022 16:08:19 +0200 Subject: [PATCH] Removed redundant NUMA affinity attribute from class thread. The topology service provides this info now. --- repos/base/include/base/thread.h | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/base/include/base/thread.h b/repos/base/include/base/thread.h index 08f7531afb..23c85e88c3 100644 --- a/repos/base/include/base/thread.h +++ b/repos/base/include/base/thread.h @@ -49,6 +49,7 @@ class Genode::Thread typedef Affinity::Location Location; typedef Cpu_session::Name Name; typedef Cpu_session::Weight Weight; + typedef unsigned Numa_id; struct Stack_info { addr_t base; addr_t top; addr_t libc_tls_pointer_offset; };