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

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestHangsChild", ParentImpl="TestHangsParent"]
intr protocol PTestHangs {
both:
    [LegacyIntr] intr StackFrame();

parent:
    async Nonce();

child:
    async Start();
    [LegacyIntr] intr Hang();
    async __delete__();
};

} // namespace _ipdltest
} // namespace mozilla