mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Alexander Monakov <amonakov@ispras.ru>
To: musl@lists.openwall.com
Subject: Re: Resuming work on new semaphore
Date: Sun, 5 Apr 2015 23:03:34 +0300 (MSK)	[thread overview]
Message-ID: <alpine.LNX.2.11.1504052217310.8195@monopod.intra.ispras.ru> (raw)
In-Reply-To: <20150405190214.GF6817@brightrain.aerifal.cx>

On Sun, 5 Apr 2015, Rich Felker wrote:
> 1. Thread A enters sem_wait.
> 2. Thread B observes thread A in sem_wait via failed sem_trywait.

Hm, I don't see how that can be achieved.  As a result I'm afraid I didn't
fully understand your example.

> > Well we can make sem_getvalue return val[0]+val[1] instead... ;)
> 
> That just makes the new implementation look like the old one, no? :-)

Can't be bad if it behaves the same but works a bit faster.
Apropos, like I've said on IRC, looks like there's "semaphore uncertainty
principle": that formal semaphore value is between val[0] and (val[0] +/-
val[1]) (clamped to 0 as needed).  It seems you can either do your hack and
pretend that there are never any waiters, or try to faithfully count waiters
in sem_getvalue, but then also reveal that sometimes the implementation works
by stealing a post.  I believe you could argue that the latter is explicitely
disallowed by the spec.

By the way, I think there's an interesting interplay with cancellation.
Consider the following.  Thread B does "return sem_wait(sem);". Thread A does:

  pthread_cancel(thread_B);
  sem_post(sem);
  sem_getvalue(sem);

If it observes semaphore value as 1 it follows that thread B has not become a
waiter yet, and since it must have cancellation already pending, it may not
consume the post.  And yet if thread B is already futex-waiting in sem_wait,
consuming the post takes priority over acting on cancellation.  So if then
thread A does

  pthread_join(thread_B);
  sem_getvalue(sem);

and gets value of 0, it sees a contradiction.  And return value from
pthread_join will indicate that thread_B exited normally rather than was
cancelled.

And on the contrary, if you make acting on cancellation/timeout take priority,
you can observe semaphore value increasing when waiters leave the wait on
error path without consuming the post.

Alexander


  reply	other threads:[~2015-04-05 20:03 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-02  1:30 Rich Felker
2015-04-02  7:42 ` Alexander Monakov
2015-04-02 15:26   ` Rich Felker
2015-04-02 21:39     ` Alexander Monakov
2015-04-02 23:14       ` Rich Felker
2015-04-05 14:07         ` Alexander Monakov
2015-04-05 14:17           ` Alexander Monakov
2015-04-05 19:02             ` Rich Felker
2015-04-05 20:03               ` Alexander Monakov [this message]
2015-04-05 20:23                 ` Rich Felker
2015-04-05 21:07                   ` Alexander Monakov
2015-04-11 22:22                     ` Alexander Monakov
2015-04-23 16:06                       ` Rich Felker
2015-04-23 18:24                         ` Alexander Monakov
2015-04-23 20:01                           ` Alexander Monakov
2015-04-24  2:46                             ` Rich Felker
2015-04-24 10:23                               ` Alexander Monakov
2015-04-24 15:03                                 ` Rich Felker
2015-04-24 15:47                                 ` Alexander Monakov
2015-04-24 15:59                                   ` Rich Felker

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=alpine.LNX.2.11.1504052217310.8195@monopod.intra.ispras.ru \
    --to=amonakov@ispras.ru \
    --cc=musl@lists.openwall.com \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).