[zion] Add a syscall to duplicate capabilities

This commit is contained in:
Drew Galbraith 2023-06-17 00:59:44 -07:00
parent 378ced6b6c
commit cc191cd6bb
4 changed files with 36 additions and 0 deletions

View file

@ -102,3 +102,11 @@ struct ZIrqRegisterReq {
struct ZIrqRegisterResp {
uint64_t port_cap;
};
struct ZCapDuplicateReq {
uint64_t cap;
};
struct ZCapDuplicateResp {
uint64_t cap;
};