mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
549 B
Plaintext
35 lines
549 B
Plaintext
|
namespace mozilla {
|
||
|
namespace _ipdltest {
|
||
|
|
||
|
rpc protocol PTestRPCShutdownRace {
|
||
|
parent:
|
||
|
sync StartDeath();
|
||
|
async Orphan();
|
||
|
|
||
|
child:
|
||
|
async Start();
|
||
|
rpc Exit();
|
||
|
async __delete__();
|
||
|
|
||
|
state START:
|
||
|
send Start goto START_DEATH;
|
||
|
|
||
|
state START_DEATH:
|
||
|
recv StartDeath goto EXITING;
|
||
|
|
||
|
state EXITING:
|
||
|
recv Orphan goto QUITTING1;
|
||
|
call Exit goto QUITTING2;
|
||
|
|
||
|
state QUITTING1:
|
||
|
call Exit goto DEAD;
|
||
|
state QUITTING2:
|
||
|
recv Orphan goto DEAD;
|
||
|
|
||
|
state DEAD:
|
||
|
send __delete__;
|
||
|
};
|
||
|
|
||
|
} // namespace _ipdltest
|
||
|
} // namespace mozilla
|