summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestHighestPrio.ipdl
blob: 877ba427b6519075aa9f4dcd9cfbb7290c2e9a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include "mozilla/_ipdltest/TestHighestPrio.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, NestedUpTo=inside_cpow, ChildImpl="TestHighestPrioChild", ParentImpl="TestHighestPrioParent"]
sync protocol PTestHighestPrio
{
parent:
  [Nested=inside_cpow] async Msg1();
  [Nested=inside_sync] sync Msg2();
  [Nested=inside_cpow] async Msg3();
  [Nested=inside_cpow] sync Msg4();

child:
  async Start();
  [Nested=inside_sync] sync StartInner();
};

}
}