diff options
Diffstat (limited to '')
-rw-r--r-- | ipc/ipdl/test/ipdl/ok/Pshmem.ipdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl b/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl new file mode 100644 index 0000000000..326fb60c97 --- /dev/null +++ b/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl @@ -0,0 +1,13 @@ +union Foo { + int; + Shmem; +}; + +intr protocol Pshmem { +parent: + async Msg(Shmem s, Foo f); + sync SyncMsg(Shmem s, Foo f) + returns (Shmem t, Foo g); + intr InterruptMsg(Shmem s, Foo f) + returns (Shmem t, Foo g); +}; |