12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #include "os/c-api/il2cpp-config-platforms.h"
- #include "os/Semaphore.h"
- #if IL2CPP_SUPPORT_THREADS
- #include "os/Atomic.h"
- #if IL2CPP_TARGET_WINDOWS || IL2CPP_TARGET_POSIX
- #include "os/Generic/SemaphoreImpl.h"
- #else
- #include "os/SemaphoreImpl.h"
- #endif
- namespace il2cpp
- {
- namespace os
- {
- Semaphore::Semaphore(int32_t initialValue, int32_t maximumValue)
- : m_Semaphore(new SemaphoreImpl(initialValue, maximumValue))
- {
- }
- Semaphore::~Semaphore()
- {
- delete m_Semaphore;
- }
- bool Semaphore::Post(int32_t releaseCount, int32_t* previousCount)
- {
- return m_Semaphore->Post(releaseCount, previousCount);
- }
- WaitStatus Semaphore::Wait(bool interruptible)
- {
- return m_Semaphore->Wait(interruptible);
- }
- WaitStatus Semaphore::Wait(uint32_t ms, bool interruptible)
- {
- return m_Semaphore->Wait(ms, interruptible);
- }
- void* Semaphore::GetOSHandle()
- {
- return m_Semaphore->GetOSHandle();
- }
- }
- }
- #else
- namespace il2cpp
- {
- namespace os
- {
- Semaphore::Semaphore(int32_t initialValue, int32_t maximumValue)
- {
- }
- Semaphore::~Semaphore()
- {
- }
- bool Semaphore::Post(int32_t releaseCount, int32_t* previousCount)
- {
- return true;
- }
- WaitStatus Semaphore::Wait(bool interruptible)
- {
- return kWaitStatusSuccess;
- }
- WaitStatus Semaphore::Wait(uint32_t ms, bool interruptible)
- {
- return kWaitStatusSuccess;
- }
- void* Semaphore::GetOSHandle()
- {
- return NULL;
- }
- }
- }
- #endif
|