summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/ipdl/ok/Pshmem.ipdl')
-rw-r--r--ipc/ipdl/test/ipdl/ok/Pshmem.ipdl14
1 files changed, 14 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..a46e777d8c
--- /dev/null
+++ b/ipc/ipdl/test/ipdl/ok/Pshmem.ipdl
@@ -0,0 +1,14 @@
+union Foo {
+ int;
+ Shmem;
+};
+
+[ChildProc=any]
+intr protocol Pshmem {
+parent:
+ async Msg(Shmem s, Foo f);
+ sync SyncMsg(Shmem s, Foo f)
+ returns (Shmem t, Foo g);
+ [LegacyIntr] intr InterruptMsg(Shmem s, Foo f)
+ returns (Shmem t, Foo g);
+};