1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

Change "device conncection" function names to camelcase.

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2025-02-13 14:24:55 +01:00 committed by Niklas Eiling
parent 833886c373
commit f267f85f0f
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ public:
from(const villas::kernel::devices::Device &device,
std::shared_ptr<kernel::vfio::Container> vfio_container);
void add_to_memorygraph() const;
void addToMemorygraph() const;
};
} // namespace devices

View file

@ -45,7 +45,7 @@ DeviceConnection DeviceConnection::from(const villas::kernel::devices::Device &d
return DeviceConnection(vfio_device);
}
void DeviceConnection::add_to_memorygraph() const {
void DeviceConnection::addToMemorygraph() const {
// Map vfio device memory to process
const void *mapping = this->vfio_device->regionMap(0);
if (mapping == MAP_FAILED) {