ealanos: Added field for dataspace cap to hyperblock.

This commit is contained in:
Michael Mueller
2025-04-23 18:40:10 +02:00
parent 3f4024e7d5
commit ba23ca5386

View File

@@ -34,6 +34,10 @@ class Ealan::Memory::Hyperblock
{
public:
Hyperblock *_next{nullptr};
Genode::Ram_dataspace_capability cap{};
void *operator new(Genode::size_t, void *p) { return p; }
Hyperblock *next() { return _next; }
void next(Hyperblock *p) { _next = p; }
};
/**