1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/fpga/include/villas/memory_manager.hpp

48 lines
690 B
C++
Raw Normal View History

2018-01-30 15:11:29 +01:00
#pragma once
#include <cstdint>
#include "log.hpp"
#include "directed_graph.hpp"
namespace villas {
class Mapping : public graph::Edge {
public:
// create mapping here (if needed)
Mapping() {}
// destroy mapping here (if needed)
~Mapping() {}
private:
uintptr_t src;
uintptr_t dest;
size_t size;
};
class AddressSpace : public graph::Vertex {
private:
// do we need any metadata? maybe a name?
int id;
};
// is or has a graph
class MemoryManager {
// This is a singleton
private:
MemoryManager() = default;
static MemoryManager* instance;
public:
static MemoryManager& get();
private:
// std::list<>
};
} // namespace villas