blob: eae428211f77a7b735a7b1cb7206e117848dcfea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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__();
state ALIVE:
call DIEDIEDIE goto CRASH;
state CRASH:
send __delete__;
};
}
}
|