Implemened stub for NUMA-aware try_alloc.

This commit is contained in:
Michael Mueller
2024-09-15 19:48:13 +02:00
parent e7181adc88
commit 809b54e524

View File

@@ -135,6 +135,11 @@ class Genode::Session_env : public Ram_allocator,
return result; return result;
} }
Alloc_result try_alloc(size_t size, Numa_id, Cache cache) override
{
// TODO: Actually perform allocation from node numa_id here
return try_alloc(size, cache);
}
void free(Ram_dataspace_capability ds) override void free(Ram_dataspace_capability ds) override
{ {