diff options
Diffstat (limited to '')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl b/ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl new file mode 100644 index 0000000000..19c06353b3 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl @@ -0,0 +1,16 @@ +namespace mozilla { +namespace _ipdltest { + +intr protocol PTestInterruptShutdownRace { +parent: + sync StartDeath(); + async Orphan(); + +child: + async Start(); + intr Exit(); + async __delete__(); +}; + +} // namespace _ipdltest +} // namespace mozilla |