mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-16 22:28:18 +00:00
nova: extend pd_session by assign_pci function
This commit is contained in:
committed by
Norman Feske
parent
c114014c1c
commit
c36f6a04a7
@ -27,9 +27,14 @@ namespace Genode {
|
||||
int bind_thread(Thread_capability thread) {
|
||||
return call<Rpc_bind_thread>(thread); }
|
||||
|
||||
int assign_parent(Parent_capability parent) {
|
||||
int assign_parent(Parent_capability parent)
|
||||
{
|
||||
parent.solely_map();
|
||||
return call<Rpc_assign_parent>(parent); }
|
||||
return call<Rpc_assign_parent>(parent);
|
||||
}
|
||||
|
||||
bool assign_pci(addr_t pci_config_memory_address) {
|
||||
return call<Rpc_assign_pci>(pci_config_memory_address); }
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user