mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
20 lines
429 B
Plaintext
20 lines
429 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
prio(normal upto high) sync protocol PTestUrgency
|
|
{
|
|
parent:
|
|
sync Test1() returns (uint32_t result);
|
|
async Test2();
|
|
sync Test3() returns (uint32_t result);
|
|
sync FinalTest_Begin();
|
|
|
|
child:
|
|
async Start();
|
|
prio(high) sync Reply1() returns (uint32_t result);
|
|
prio(high) sync Reply2() returns (uint32_t result);
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|