summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestSyncError.ipdl
blob: 05b68ff3509f41babae26bafa0ebbdbd49abf81d (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
26
27
28

namespace mozilla {
namespace _ipdltest {


sync protocol PTestSyncError {

child:
    async Start();

parent:
    sync Error();
    async __delete__();


state START:
    send Start goto SYNC_ERROR;

state SYNC_ERROR:
    recv Error goto DEAD;

state DEAD:
    recv __delete__;
};


} // namespace mozilla
} // namespace _ipdltest