summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestOpens.ipdl
blob: 2717328faa352b5e73a957bcefa30dacb7841ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
include protocol PTestOpensOpened;

namespace mozilla {
namespace _ipdltest {


protocol PTestOpens {
    // This channel is opened and parked on a non-main thread
    child opens PTestOpensOpened;

child:
    async Start();

parent:
    async __delete__();

state START:
    send Start goto DEAD;
state DEAD:
    recv __delete__;
};


} // namespace mozilla
} // namespace _ipdltest