Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 include protocol PTestBadActorSub;
3 namespace mozilla {
4 namespace _ipdltest {
6 // Test that a parent sending a reentrant __delete__ message
7 // is not killed if a child's message races with the reply.
9 intr protocol PTestBadActor {
10 manages PTestBadActorSub;
12 child:
13 PTestBadActorSub();
14 __delete__();
15 };
17 } // namespace _ipdltest
18 } // namespace mozilla