27 lines
392 B
C++
27 lines
392 B
C++
#pragma once
|
|
|
|
#if IL2CPP_THREADS_PTHREAD
|
|
|
|
#include "os/ErrorCodes.h"
|
|
#include "os/WaitStatus.h"
|
|
#include "PosixWaitObject.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
namespace il2cpp
|
|
{
|
|
namespace os
|
|
{
|
|
class EventImpl : public posix::PosixWaitObject
|
|
{
|
|
public:
|
|
EventImpl(bool manualReset = false, bool signaled = false);
|
|
|
|
ErrorCode Set();
|
|
ErrorCode Reset();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif
|