-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tool: specify ppcalls on a per-channel basis
Previously, this was done on a per-protection domain basis, which meant that protection domains were given more rights than was strictly necessary. This also allows for authors to remove rights for sending notifications on either end of the channel, and so allows for having unidirectional notification channels. This removes the previous `pp="true"` attribute on PDs (the one you would PPC *into*), replacing it with `pp="true/false" and `notify="true/false"` on each channel end. So the following: ``` <protection_domain name="sender" [...] /> <protection_domain name="receiver" pp="true" [...] /> <channel> <end id="0" pd="sender" /> <end id="0" pd="receiver" /> </channel> ``` Becomes instead: ``` <protection_domain name="sender" [...] /> <protection_domain name="receiver" [...] /> <channel> <end id="0" pd="sender" pp="true" /> <end id="0" pd="receiver" /> </channel> ``` Signed-off-by: julia <[email protected]>
- Loading branch information
1 parent
a9f6537
commit 2edb5c3
Showing
10 changed files
with
319 additions
and
172 deletions.
There are no files selected for viewing
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.