RFC: Semaphore behavior

Balbir Singh (balbir_soni@hotmail.com)
Mon, 11 Feb 2002 16:22:50 -0800


I wanted to clarify my understanding of the behavior of semaphores
on the i386 architecture, as I understand it.

1. I grab a semaphore and I am open to accepting signals
(down_interruptible)
2. I am interrupted by a user process using ctrl-C or some other
method of signal delivery.
3. After this point, I cannot grab *ANY* semaphore using
(down_interruptible), since the semaphore implementation checks for
pending signals and if there are signals pending, it does not
grant me the semaphore.

So, the only option I have after (2) to use down_interruptible again
is

a. Flush the signal.
b. Handle the signal.

Please cc your replies to me

Is my assessment correct?
Balbir

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/