summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestShmem.ipdl
blob: 262e34fabea4231d037806524f9cbf33ae8bdaa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace mozilla {
namespace _ipdltest {

protocol PTestShmem {
child:
    async Give(Shmem mem, Shmem unsafe, uint32_t expectedSize);

parent:
    async Take(Shmem mem, Shmem unsafe, uint32_t expectedSize);
    async __delete__();
};

}
}