ipc/ipdl/test/cxx/PTestSysVShmem.ipdl

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:b0029a4e284c
1 namespace mozilla {
2 namespace _ipdltest {
3
4 protocol PTestSysVShmem {
5 child:
6 Give(Shmem mem, Shmem unsafe, size_t expectedSize);
7
8 parent:
9 Take(Shmem mem, Shmem unsafe, size_t expectedSize);
10 __delete__();
11
12
13 state GIVING:
14 send Give goto TAKING;
15
16 state TAKING:
17 recv Take goto TAKING;
18 recv __delete__;
19 };
20
21 }
22 }

mercurial