tenfourfox/ipc/ipdl/test/cxx/PTestRPC.ipdl
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
584 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();
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();
};
} // namespace _ipdltest
} // namespace mozilla