ipc/ipdl/test/cxx/PTestBadActor.ipdl

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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