LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/os/Posix/EventImpl.h
2019-07-01 14:33:21 +02:00

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