tenfourfox/ipc/ipdl/test/cxx/PTestInterruptShutdownRace.ipdl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

35 lines
557 B
Plaintext

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