1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/ipdl/test/cxx/PTestBadActor.ipdl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +include protocol PTestBadActorSub; 1.5 + 1.6 +namespace mozilla { 1.7 +namespace _ipdltest { 1.8 + 1.9 +// Test that a parent sending a reentrant __delete__ message 1.10 +// is not killed if a child's message races with the reply. 1.11 + 1.12 +intr protocol PTestBadActor { 1.13 + manages PTestBadActorSub; 1.14 + 1.15 +child: 1.16 + PTestBadActorSub(); 1.17 + __delete__(); 1.18 +}; 1.19 + 1.20 +} // namespace _ipdltest 1.21 +} // namespace mozilla