gecko/ipc/ipdl/test/cxx/PTestShmem.ipdl

23 lines
325 B
Plaintext
Raw Normal View History

namespace mozilla {
namespace _ipdltest {
protocol PTestShmem {
child:
2010-11-05 00:17:07 -07:00
Give(Shmem mem, Shmem unsafe, size_t expectedSize);
parent:
2010-11-05 00:17:07 -07:00
Take(Shmem mem, Shmem unsafe, size_t expectedSize);
__delete__();
state GIVING:
send Give goto TAKING;
state TAKING:
recv Take goto TAKING;
recv __delete__;
};
}
}