blob: 43d955f1c7f1d6c12e875bc7b10e346cf4821116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include "mozilla/_ipdltest/TestCrashCleanup.h";
// 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.
[ManualDealloc, ChildImpl="TestCrashCleanupChild", ParentImpl="TestCrashCleanupParent"]
intr protocol PTestCrashCleanup {
child:
[LegacyIntr] intr DIEDIEDIE();
async __delete__();
};
}
}
|