mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
00ee801a2c
--HG-- extra : transplant_source : 8e%9E%87%3F%D1%EE%A7%3A%AB%19%84%AD%C1%DD%13%CE%82%E3w
42 lines
641 B
Plaintext
42 lines
641 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
rpc protocol PTestSyncWakeup {
|
|
both:
|
|
rpc StackFrame();
|
|
|
|
child:
|
|
async Start();
|
|
async Note1();
|
|
async Note2();
|
|
|
|
parent:
|
|
sync Sync1();
|
|
sync Sync2();
|
|
async __delete__();
|
|
|
|
|
|
state START:
|
|
send Start goto TEST1;
|
|
|
|
state TEST1:
|
|
recv Sync1 goto TEST1_P2;
|
|
state TEST1_P2:
|
|
send Note1 goto TEST2;
|
|
|
|
state TEST2:
|
|
answer StackFrame goto TEST2_P2;
|
|
state TEST2_P2:
|
|
call StackFrame goto TEST2_P3;
|
|
state TEST2_P3:
|
|
recv Sync2 goto TEST2_P4;
|
|
state TEST2_P4:
|
|
send Note2 goto DONE;
|
|
|
|
state DONE:
|
|
recv __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|