ipc/ipdl/test/cxx/PTestBadActor.ipdl

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

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

mercurial