mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
26 lines
384 B
Plaintext
26 lines
384 B
Plaintext
include protocol PTestOpensOpened;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestOpens {
|
|
// This channel is opened and parked on a non-main thread
|
|
child opens PTestOpensOpened;
|
|
|
|
child:
|
|
async Start();
|
|
|
|
parent:
|
|
async __delete__();
|
|
|
|
state START:
|
|
send Start goto DEAD;
|
|
state DEAD:
|
|
recv __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|