I am implementing semaphore in c language.I have a POSIX counting semaphore. I want to assign a value to it. and i don't want to use Wait or Post. Can i do that? Is there any function like "setValue" for POSIX Semaphore ?
How to set POSIX semaphore value to 1?
6.7k Views Asked by KrunalParmar At
2
There are 2 best solutions below
0

If you could directly change its value during normal operation (i.e. except for initialization), it would not be a semaphore anymore. So you might be looking for something different, maybe a thread-safe counter/shared variable? Such more complex shared objects are normaly implemented with the basic synchronization primitives, like locks/mutex/semaphore/etc. Which to use depends on what you want to implement.
OTOH, you are possibly presenting an XY-problem. Perhaps if you state what you actually want to achieve, we can point you to a better/easier/ solution.
Wait and Post are the only operations supported by a classic semaphore. POSIX semaphores can be initialized with a count using sem_init(). Any kind of 'setValue' function would destroy the functionality of the semaphore by allowing units to be 'lost', eg. by being posted by one thread just before 'setValue' was called by another.
It's a really bad idea, which is why it is not implemented.