mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
38 lines
747 B
Plaintext
38 lines
747 B
Plaintext
include protocol PTestShutdownSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
rpc protocol PTestShutdown {
|
|
manages PTestShutdownSub;
|
|
|
|
child:
|
|
Start();
|
|
|
|
parent:
|
|
// NB: we test deletion and crashing only, not shutdown, because
|
|
// crashing is the same code path as shutdown, and other IPDL unit
|
|
// tests check shutdown semantics
|
|
PTestShutdownSub(bool expectCrash);
|
|
|
|
// Used to synchronize between parent and child, to avoid races
|
|
// around flushing socket write queues
|
|
sync Sync();
|
|
|
|
__delete__();
|
|
|
|
|
|
state START:
|
|
send Start goto TESTING;
|
|
|
|
state TESTING:
|
|
recv PTestShutdownSub goto TESTING;
|
|
recv Sync goto DYING;
|
|
|
|
state DYING:
|
|
recv __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|