mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
66 lines
1.3 KiB
C++
66 lines
1.3 KiB
C++
#ifndef mozilla__ipdltest_TestSysVShmem_h
|
|
#define mozilla__ipdltest_TestSysVShmem_h
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestSysVShmemParent.h"
|
|
#include "mozilla/_ipdltest/PTestSysVShmemChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
class TestSysVShmemParent :
|
|
public PTestSysVShmemParent
|
|
{
|
|
public:
|
|
TestSysVShmemParent() { }
|
|
virtual ~TestSysVShmemParent() { }
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
NS_OVERRIDE
|
|
virtual bool RecvTake(
|
|
Shmem& mem,
|
|
const size_t& expectedSize);
|
|
|
|
NS_OVERRIDE
|
|
virtual void ActorDestroy(ActorDestroyReason why)
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
passed("ok");
|
|
QuitParent();
|
|
}
|
|
};
|
|
|
|
|
|
class TestSysVShmemChild :
|
|
public PTestSysVShmemChild
|
|
{
|
|
public:
|
|
TestSysVShmemChild() { }
|
|
virtual ~TestSysVShmemChild() { }
|
|
|
|
protected:
|
|
NS_OVERRIDE
|
|
virtual bool RecvGive(
|
|
Shmem& mem,
|
|
const size_t& expectedSize);
|
|
|
|
NS_OVERRIDE
|
|
virtual void ActorDestroy(ActorDestroyReason why)
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
QuitChild();
|
|
}
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestSysVShmem_h
|