summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestCrashCleanup.ipdl
blob: 7d8f8f6614fcddcda568dbe35bcb905b1ae6e3b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// See bug 538586: if the top-level protocol's actor is deleted before
// the "connection error" notification comes in from the IO thread,
// IPDL teardown never occurs, even if Channel::Close() is called
// after the error.

namespace mozilla {
namespace _ipdltest {

// NB: needs to be RPC so that the parent blocks on the child's crash.
intr protocol PTestCrashCleanup {
child:
    intr DIEDIEDIE();
    async __delete__();
};

}
}