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

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestSyncWakeupChild", ParentImpl="TestSyncWakeupParent"]
intr protocol PTestSyncWakeup {
both:
    [LegacyIntr] intr StackFrame();

child:
    async Start();
    async Note1();
    async Note2();

parent:
    sync Sync1();
    sync Sync2();
    async __delete__();
};

} // namespace _ipdltest
} // namespace mozilla