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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
490 B
C
Raw Permalink Normal View History

2018-07-04 17:27:15 +02:00
/* Memory allocators.
*
* Author: Dennis Potter <dennis@dennispotter.eu>
2022-03-15 09:28:57 -04:00
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2022-07-04 18:20:03 +02:00
* SPDX-License-Identifier: Apache-2.0
2018-07-04 17:27:15 +02:00
*/
2019-04-07 15:13:40 +02:00
#pragma once
#include <villas/node.hpp>
2018-07-04 17:27:15 +02:00
namespace villas {
namespace node {
namespace memory {
struct IB {
2019-10-26 13:36:10 +02:00
struct ibv_pd *pd;
struct Type *parent;
2018-07-04 17:27:15 +02:00
};
struct ibv_mr *ib_get_mr(void *ptr);
} // namespace memory
} // namespace node
} // namespace villas