From: Gilles Carry <Gilles.Carry@bull.net>
To: Darren Hart <dvhltc@us.ibm.com>
Cc: RT <linux-rt-users@vger.kernel.org>
Subject: Re: Breaking out of pthread_mutex_lock
Date: Fri, 30 May 2008 10:58:24 +0200 [thread overview]
Message-ID: <483FC1B0.30702@bull.net> (raw)
In-Reply-To: <1212104515.14713.96.camel@Aeon>
Hello Darren,
In futex_lock_pi(futex.c) when ERESTARTNOINTR which make the syscall to
be reexecuted whatever comes after the sighandler ends.
One trick you can try (I've not tested it!) is use
pthread_timedlock(mutex, abstime) and in sighandler, set abstime values
to cause timeout. Since futex_lock_pi reads the time struct at each
call, it will exit on timeout at reexecution.
Worth trying.
Gilles.
Darren Hart wrote:
> I find I need to be able to break out of the blocked state while waiting
> to acquire a pthread_mutex. I'm using PI mutexes and want to continue
> to do so. As I understand it, I can't use a signal to break out of the
> lock as the man pages states:
>
> "If a signal is delivered to a thread waiting for a mutex, upon return
> from the signal handler the thread shall resume waiting for the mutex
> as if it was not interrupted."
>
> and that pthread_mutex_lock will not return EINTR. I had considered
> using cond variables, but I don't think they will provide the same PI
> behavior (since the threads are not blocked on the mutex while awaiting
> the pthread_cond_signal - right?).
>
> I'm sure I'm not the first to want to do this, does anyone know of a
> common best practice for accomplishing such a thing?
>
--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Gilles.Carry
Linux Project team
mailto: gilles.carry@bull.net
Phone: +33 (0)4 76 29 74 27
Addr.: BULL S.A. 1 rue de Provence, B.P. 208 38432 Echirolles Cedex
http://www.bull.com
http://www.bullopensource.org/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
prev parent reply other threads:[~2008-05-30 8:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-29 23:41 Breaking out of pthread_mutex_lock Darren Hart
2008-05-29 23:46 ` Stephen Hemminger
2008-05-30 14:57 ` Darren Hart
2008-05-30 15:24 ` Clark Williams
2008-06-02 11:36 ` Gilles Carry
2008-05-30 8:58 ` Gilles Carry [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=483FC1B0.30702@bull.net \
--to=gilles.carry@bull.net \
--cc=dvhltc@us.ibm.com \
--cc=linux-rt-users@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.