-
Notifications
You must be signed in to change notification settings - Fork 64
Description
Right now the notion of 'parent' and 'child' PDs means that the parent PD has access to the child PD's TCB capability and becomes the fault handler for the child.
This works well enough to enable things such as resetting PDs when they crash, VMMs, and our port of the GDB debugger.
However, there is a limitation with the current model that means that there can only be one parent per child. This makes sense for fault handling, but there could be cases where there is one fault handler for a PD but multiple PDs that need access to the child's TCB.
Unfortunately this will result in a breaking change. Thinking about it further, we may want to keep the current model the same and just add the ability to just get TCB access without being a parent. So we may have to make a breaking change to the SDF, we'll see.