tenfourfox/ipc/ipdl/test/cxx/PTestNestedLoops.ipdl

35 lines
430 B
Plaintext
Raw Normal View History

2017-04-19 07:56:45 +00:00
namespace mozilla {
namespace _ipdltest {
intr protocol PTestNestedLoops {
child:
async Start();
intr 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