It takes an array of `int` and populate it with node-id that is allowed to allocate memory from.
size_t os::numa_get_leaf_groups(int *ids, size_t size)
However, a valid node-id is always non-negative, so `uint* ids` in the args is more suitable.
size_t os::numa_get_leaf_groups(int *ids, size_t size)
However, a valid node-id is always non-negative, so `uint* ids` in the args is more suitable.
- relates to
-
JDK-8316886 Remove redundant range check in NUMANodeListHolder::get_node_list_entry
-
- Open
-
-
JDK-8315550 G1: Fix -Wconversion warnings in g1NUMA
-
- Resolved
-
-
JDK-8316115 Parallel: Fix -Wconversion warnings around NUMA node ID
-
- Resolved
-