mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
428 B
Plaintext
35 lines
428 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
rpc protocol PTestNestedLoops {
|
|
|
|
child:
|
|
async Start();
|
|
rpc R();
|
|
__delete__();
|
|
|
|
parent:
|
|
async Nonce();
|
|
|
|
|
|
state START:
|
|
send Start goto RACE;
|
|
|
|
state RACE:
|
|
recv Nonce goto RACE1;
|
|
call R goto RACE2;
|
|
state RACE1:
|
|
call R goto DEAD;
|
|
state RACE2:
|
|
recv Nonce goto DEAD;
|
|
|
|
state DEAD:
|
|
send __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|