diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl b/ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl new file mode 100644 index 0000000000..6256eca9db --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestRacyUndefer.ipdl @@ -0,0 +1,30 @@ +include "mozilla/_ipdltest/TestRacyUndefer.h"; + +namespace mozilla { +namespace _ipdltest { + + +[ManualDealloc, ChildImpl="TestRacyUndeferChild", ParentImpl="TestRacyUndeferParent"] +intr protocol PTestRacyUndefer { + +child: + async Start(); + + async AwakenSpam(); + async AwakenRaceWinTwice(); + + [LegacyIntr] intr Race(); + + async __delete__(); + +parent: + + [LegacyIntr] intr Spam(); + [LegacyIntr] intr RaceWinTwice(); + + async Done(); +}; + + +} // namespace mozilla +} // namespace _ipdltest |