gecko/ipc/ipdl/test/cxx/PTestRacyRPCReplies.ipdl
Chris Jones 6345658b6f Bug 521929, part 3: IPDL/C++ test.
--HG--
extra : transplant_source : %9E%82%3E%20E%81J%97r%CD%05%93%FC%E0%9C%877P%DF%EE
2010-01-21 20:04:11 -06:00

28 lines
356 B
Plaintext

namespace mozilla {
namespace _ipdltest {
rpc protocol PTestRacyRPCReplies {
child:
rpc R() returns (int replyNum);
async __delete__();
parent:
async A();
state START:
call R goto S1;
state S1:
recv A goto S2;
state S2:
call R goto DYING;
state DYING:
send __delete__;
};
} // namespace _ipdltest
} // namespace mozilla