gecko/ipc/ipdl/test/cxx/PTestSysVShmem.ipdl
2010-04-16 00:29:17 -05:00

23 lines
301 B
Plaintext

namespace mozilla {
namespace _ipdltest {
protocol PTestSysVShmem {
child:
Give(Shmem mem, size_t expectedSize);
parent:
Take(Shmem mem, size_t expectedSize);
__delete__();
state GIVING:
send Give goto TAKING;
state TAKING:
recv Take goto TAKING;
recv __delete__;
};
}
}