Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

if a process goes down after decrementing the value of semaphore from 1 to 0, as per my understanding the value of semaphore remains as 0.

If the same process comes up again and tries to re-acquire the same semaphore, it will block for ever.

Is there a way to reset the semaphore value to 1 after decrementing it if my process goes down abnormally?

share|improve this question

1 Answer

I assume you are using the standard semctl()/semop() API for the semaphores.

There is a flag available called SEM_UNDO that will tell the kernel to reset the semaphore's value if your process terminates. You need to use this in your semop( ) calls.

More information here : http://beej.us/guide/bgipc/output/html/multipage/semaphores.html

share|improve this answer
thanks a lot..it helped me in resolving the problem – abc Sep 26 '11 at 4:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.