mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
reorder of members and added virtual
Signed-off-by: Pascal Henry Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
parent
85b2e8b030
commit
26e2251afe
1 changed files with 5 additions and 4 deletions
|
@ -21,6 +21,8 @@ class Card
|
|||
{
|
||||
public:
|
||||
bool polling;
|
||||
|
||||
std::shared_ptr<kernel::vfio::Container> vfioContainer;
|
||||
std::shared_ptr<kernel::vfio::Device> vfioDevice;
|
||||
|
||||
// Slave address space ID to access the PCIe address space from the
|
||||
|
@ -32,13 +34,12 @@ public:
|
|||
// card.
|
||||
MemoryManager::AddressSpaceId addrSpaceIdHostToDevice;
|
||||
|
||||
std::list<std::shared_ptr<ip::Core> > ips;
|
||||
std::list<std::shared_ptr<ip::Core>> ips;
|
||||
|
||||
virtual ~Card();
|
||||
|
||||
bool mapMemoryBlock(const std::shared_ptr<MemoryBlock> block);
|
||||
bool unmapMemoryBlock(const MemoryBlock &block);
|
||||
std::shared_ptr<kernel::vfio::Container> vfioContainer;
|
||||
virtual bool mapMemoryBlock(const std::shared_ptr<MemoryBlock> block);
|
||||
virtual bool unmapMemoryBlock(const MemoryBlock &block);
|
||||
|
||||
std::shared_ptr<ip::Core> lookupIp(const std::string &name) const;
|
||||
std::shared_ptr<ip::Core> lookupIp(const Vlnv &vlnv) const;
|
||||
|
|
Loading…
Add table
Reference in a new issue