[zion] Move to default permissions being supplied by KernelObjects
This commit is contained in:
parent
48c6e5b3a4
commit
1364fbed9f
16 changed files with 91 additions and 54 deletions
|
|
@ -21,6 +21,10 @@ struct KernelObjectTag<Channel> {
|
|||
class Channel : public IpcObject {
|
||||
public:
|
||||
uint64_t TypeTag() override { return KernelObject::CHANNEL; }
|
||||
static uint64_t DefaultPermissions() {
|
||||
return kZionPerm_Read | kZionPerm_Write;
|
||||
}
|
||||
|
||||
static glcr::Pair<glcr::RefPtr<Channel>, glcr::RefPtr<Channel>>
|
||||
CreateChannelPair();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue