base: support to attach RAM dataspaces readonly

Fixes #1633
This commit is contained in:
Alexander Boettcher
2018-05-08 11:21:10 +02:00
committed by Christian Helmuth
parent 487e8ea934
commit e6d20aba93
29 changed files with 122 additions and 78 deletions

View File

@ -24,10 +24,10 @@ Region_map_client::Region_map_client(Capability<Region_map> session)
Region_map::Local_addr
Region_map_client::attach(Dataspace_capability ds, size_t size, off_t offset,
bool use_local_addr, Local_addr local_addr,
bool executable)
bool executable, bool writeable)
{
return call<Rpc_attach>(ds, size, offset, use_local_addr, local_addr,
executable);
executable, writeable);
}