diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl b/ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl new file mode 100644 index 0000000000..48921ed697 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestRacyInterruptReplies.ipdl @@ -0,0 +1,17 @@ +namespace mozilla { +namespace _ipdltest { + +intr protocol PTestRacyInterruptReplies { +child: + intr R_() returns (int replyNum); + async _A(); + async ChildTest(); + async __delete__(); + +parent: + intr _R() returns (int replyNum); + async A_(); +}; + +} // namespace _ipdltest +} // namespace mozilla |