gecko-dev/ipc/ipdl/test/cxx/PTestHighestPrio.ipdl

19 строки
275 B
Plaintext

namespace mozilla {
namespace _ipdltest {
prio(normal upto urgent) sync protocol PTestHighestPrio
{
parent:
prio(urgent) async Msg1();
sync Msg2();
prio(urgent) async Msg3();
prio(urgent) sync Msg4();
child:
async Start();
prio(high) sync StartInner();
};
}
}