28 lines
642 B
C++
28 lines
642 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: AuSemaphore.Unix.hpp
|
|
Date: 2021-6-12
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Threading::Primitives
|
|
{
|
|
struct Semaphore : ISemaphore
|
|
{
|
|
Semaphore(long intialValue = 0);
|
|
~Semaphore();
|
|
|
|
bool HasOSHandle(AuMach &mach) override;
|
|
bool HasLockImplementation() override;
|
|
bool TryLock() override;
|
|
bool Lock(AuUInt64 timeout) override;
|
|
void Lock() override;
|
|
void Unlock(long count) override;
|
|
void Unlock() override;
|
|
|
|
private:
|
|
sem_t value_{};
|
|
};
|
|
} |