diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestRacyReentry.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestRacyReentry.ipdl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestRacyReentry.ipdl b/ipc/ipdl/test/cxx/PTestRacyReentry.ipdl new file mode 100644 index 0000000000..b9579cef24 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestRacyReentry.ipdl @@ -0,0 +1,23 @@ +include "mozilla/_ipdltest/TestRacyReentry.h"; + +namespace mozilla { +namespace _ipdltest { + + +[ManualDealloc, ChildImpl="TestRacyReentryChild", ParentImpl="TestRacyReentryParent"] +intr protocol PTestRacyReentry { + +parent: + [LegacyIntr] intr E(); + async __delete__(); + +child: + async Start(); + + async N(); + [LegacyIntr] intr H(); +}; + + +} // namespace mozilla +} // namespace _ipdltest |