mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 02:47:31 +09:00
34 lines
557 B
Text
34 lines
557 B
Text
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
intr protocol PTestInterruptShutdownRace {
|
|
parent:
|
|
sync StartDeath();
|
|
async Orphan();
|
|
|
|
child:
|
|
async Start();
|
|
intr 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
|