mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-08-08 04:25:54 +00:00
23 lines
325 B
Plaintext
23 lines
325 B
Plaintext
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestShmem {
|
|
child:
|
|
Give(Shmem mem, Shmem unsafe, size_t expectedSize);
|
|
|
|
parent:
|
|
Take(Shmem mem, Shmem unsafe, size_t expectedSize);
|
|
__delete__();
|
|
|
|
|
|
state GIVING:
|
|
send Give goto TAKING;
|
|
|
|
state TAKING:
|
|
recv Take goto TAKING;
|
|
recv __delete__;
|
|
};
|
|
|
|
}
|
|
}
|