mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
Renamed Genode::Node to Topology::Numa_region to avoid name clash with VFS plugin.
This commit is contained in:
@@ -22,9 +22,13 @@ namespace Genode {
|
||||
|
||||
struct Topo_session;
|
||||
struct Topo_session_client;
|
||||
struct Node;
|
||||
}
|
||||
|
||||
namespace Topology
|
||||
{
|
||||
struct Numa_region;
|
||||
} // namespace EalanOS
|
||||
|
||||
struct Genode::Topo_session : Session
|
||||
{
|
||||
/**
|
||||
@@ -42,10 +46,10 @@ struct Genode::Topo_session : Session
|
||||
|
||||
virtual ~Topo_session() { }
|
||||
|
||||
virtual Node *node_affinity_of(Affinity::Location &) = 0;
|
||||
virtual Topology::Numa_region node_affinity_of(Affinity::Location const &) = 0;
|
||||
virtual unsigned node_count() = 0;
|
||||
|
||||
GENODE_RPC(Rpc_node_affinity, Node*, node_affinity_of, Affinity::Location &);
|
||||
GENODE_RPC(Rpc_node_affinity, Topology::Numa_region, node_affinity_of, Affinity::Location const &);
|
||||
GENODE_RPC(Rpc_node_count, unsigned, node_count);
|
||||
|
||||
GENODE_RPC_INTERFACE(Rpc_node_affinity, Rpc_node_count);
|
||||
|
||||
Reference in New Issue
Block a user