gecko/ipc/ipdl/test/cxx/PTestRPCShutdownRace.ipdl
2010-03-11 01:35:21 -06:00

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