-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec2da68
commit 064b218
Showing
41 changed files
with
1,229 additions
and
419 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2019 The Fuchsia Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style license that can be | ||
// found in the LICENSE file. | ||
library zx; | ||
|
||
// TODO(scottmg): (1 << 4) notation or something else for bits would be nice. | ||
type Rights = strict bits : uint32 { | ||
// TODO(scottmg): "bits members must be powers of two" | ||
// NONE = 0x00000000; | ||
DUPLICATE = 0x00000001; | ||
TRANSFER = 0x00000002; | ||
READ = 0x00000004; | ||
WRITE = 0x00000008; | ||
EXECUTE = 0x00000010; | ||
MAP = 0x00000020; | ||
GET_PROPERTY = 0x00000040; | ||
SET_PROPERTY = 0x00000080; | ||
ENUMERATE = 0x00000100; | ||
DESTROY = 0x00000200; | ||
SET_POLICY = 0x00000400; | ||
GET_POLICY = 0x00000800; | ||
SIGNAL = 0x00001000; | ||
SIGNAL_PEER = 0x00002000; | ||
WAIT = 0x00004000; | ||
INSPECT = 0x00008000; | ||
MANAGE_JOB = 0x00010000; | ||
MANAGE_PROCESS = 0x00020000; | ||
MANAGE_THREAD = 0x00040000; | ||
APPLY_PROFILE = 0x00080000; | ||
MANAGE_SOCKET = 0x00100000; | ||
OP_CHILDREN = 0x00200000; | ||
RESIZE = 0x00400000; | ||
ATTACH_VMO = 0x00800000; | ||
MANAGE_VMO = 0x01000000; | ||
SAME_RIGHTS = 0x80000000; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "meshx.fs", | ||
"bindings": [], | ||
"include": ["*.midl"], | ||
"exclude": [], | ||
"references": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
library meshx.fs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"name": "meshx.url", | ||
"bindings": [], | ||
"include": ["*.midl"], | ||
"exclude": [], | ||
"references": [{ "path": "../fx" }] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.