diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestSyncWakeup.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestSyncWakeup.ipdl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestSyncWakeup.ipdl b/ipc/ipdl/test/cxx/PTestSyncWakeup.ipdl new file mode 100644 index 0000000000..4f23153340 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestSyncWakeup.ipdl @@ -0,0 +1,20 @@ +namespace mozilla { +namespace _ipdltest { + +intr protocol PTestSyncWakeup { +both: + intr StackFrame(); + +child: + async Start(); + async Note1(); + async Note2(); + +parent: + sync Sync1(); + sync Sync2(); + async __delete__(); +}; + +} // namespace _ipdltest +} // namespace mozilla |