summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestRacyReentry.ipdl
blob: b9579cef240080ae9433f62024757a8a8eba631d (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/TestRacyReentry.h";

namespace mozilla {
namespace _ipdltest {


[ManualDealloc, ChildImpl="TestRacyReentryChild", ParentImpl="TestRacyReentryParent"]
intr protocol PTestRacyReentry {

parent:
    [LegacyIntr] intr E();
    async __delete__();

child:
    async Start();

    async N();
    [LegacyIntr] intr H();
};


} // namespace mozilla
} // namespace _ipdltest