small comment in semaph factory
This commit is contained in:
parent
4a90f41122
commit
e8bc2cec9f
@ -23,6 +23,7 @@ SemaphoreFactory* SemaphoreFactory::instance() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SemaphoreIF* SemaphoreFactory::createBinarySemaphore(uint32_t arguments) {
|
SemaphoreIF* SemaphoreFactory::createBinarySemaphore(uint32_t arguments) {
|
||||||
|
// Just gonna wait for full C++20 for now.
|
||||||
sif::error << "SemaphoreFactory: Binary Semaphore not implemented yet."
|
sif::error << "SemaphoreFactory: Binary Semaphore not implemented yet."
|
||||||
" Returning nullptr!\n" << std::flush;
|
" Returning nullptr!\n" << std::flush;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
@ -30,6 +31,7 @@ SemaphoreIF* SemaphoreFactory::createBinarySemaphore(uint32_t arguments) {
|
|||||||
|
|
||||||
SemaphoreIF* SemaphoreFactory::createCountingSemaphore(const uint8_t maxCount,
|
SemaphoreIF* SemaphoreFactory::createCountingSemaphore(const uint8_t maxCount,
|
||||||
uint8_t initCount, uint32_t arguments) {
|
uint8_t initCount, uint32_t arguments) {
|
||||||
|
// Just gonna wait for full C++20 for now.
|
||||||
sif::error << "SemaphoreFactory: Counting Semaphore not implemented yet."
|
sif::error << "SemaphoreFactory: Counting Semaphore not implemented yet."
|
||||||
" Returning nullptr!\n" << std::flush;
|
" Returning nullptr!\n" << std::flush;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
Loading…
Reference in New Issue
Block a user