mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
42 lines
668 B
Plaintext
42 lines
668 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
rpc protocol PTestRacyRPCReplies {
|
|
child:
|
|
rpc R_() returns (int replyNum);
|
|
async _A();
|
|
async ChildTest();
|
|
async __delete__();
|
|
|
|
parent:
|
|
rpc _R() returns (int replyNum);
|
|
async A_();
|
|
|
|
state PARENT_START:
|
|
call R_ goto PARENT_S1;
|
|
|
|
state PARENT_S1:
|
|
recv A_ goto PARENT_S2;
|
|
|
|
state PARENT_S2:
|
|
call R_ goto CHILD_TEST;
|
|
|
|
state CHILD_TEST:
|
|
send ChildTest goto CHILD_START;
|
|
|
|
state CHILD_START:
|
|
answer _R goto CHILD_S1;
|
|
|
|
state CHILD_S1:
|
|
send _A goto CHILD_S2;
|
|
|
|
state CHILD_S2:
|
|
answer _R goto DYING;
|
|
|
|
state DYING:
|
|
send __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|