gecko-dev/ipc/ipdl/test/cxx/PTestRPC.ipdl
2015-03-17 13:43:28 -07:00

25 lines
762 B
Plaintext

namespace mozilla {
namespace _ipdltest {
prio(normal upto high) sync protocol PTestRPC
{
parent:
prio(high) sync Test1_Start() returns (uint32_t result);
prio(high) sync Test1_InnerEvent() returns (uint32_t result);
async Test2_Start();
prio(high) sync Test2_OutOfOrder();
sync Test3_Start() returns (uint32_t result);
prio(high) sync Test3_InnerEvent() returns (uint32_t result);
child:
async Start();
prio(high) sync Test1_InnerQuery() returns (uint32_t result);
prio(high) sync Test1_NoReenter() returns (uint32_t result);
prio(high) sync Test2_FirstUrgent();
prio(high) sync Test2_SecondUrgent();
prio(high) sync Test3_WakeUp() returns (uint32_t result);
};
} // namespace _ipdltest
} // namespace mozilla