mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
301 B
Plaintext
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__;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|