vote up 3 vote down star
2

(I think that) the consensus number for a mutex is 2.

What is the consensus number for semaphores (like in pthread_sem_*)?

What is the consensus number for condition variables (like in pthread_cond_*)?

flag

What is a "consensus number"? – jeffamaphone Apr 21 at 15:37
follow the link... :-) – Helltone Apr 21 at 15:42
1  
I thought semaphore was a system of flag-waving signals. Like, "help, our ship is sinking!" :) – Nathan Long Apr 21 at 16:18
That paper looks pretty awesome. I wonder why I haven't seen it before. – Waylon Flinn Apr 21 at 17:07
This paper rules so much, that it seems to me it discouraged other people from working on similar problems... too bad for the DSM synchronization theory. – Helltone Apr 22 at 9:43

3 Answers

vote up 1 vote down check

The consensus number for a mutex would be 1. It's trivially clear that a mutex will be wait-free for a single thread. From it's definition, it's also clear that a mutex is no longer wait-free for two threads. The consensus number therefore is >=1 and <2, so it must be 1.

Likewise, other synchronization mechanisms that work by halting one thread in favor of another also have consensus number 1, and therefore cannot be used to construct a wait-free object shared by 2 threads.

link|flag
vote up 0 vote down

Infinite, surely? But they're not wait free.

Perhaps I'm misunderstanding. You say a mutex has a consensus number of 2 - what's your source for that? It's designed to allow any number of threads to share a resource, with the trade-off of blocking.

Atomic test-and-set has a consensus number of 2, but doesn't block.


To clarify: semaphores, mutexes, etc. are primitives that you can simply wrap around a shared resource to make it safe (as long as you do it correctly). They may block, but they will guarantee your data is safe.

The paper you cite is about the primitives needed to protect data without blocking, which is hard. The same primitives may be useful for locks as well, but that's just a nice extra.

link|flag
You are perhaps right... I think a mutex has consensus number of 2 because I can implement it with test&set ONLY. I don't think it is possible to implement a semaphore with mutexes ONLY. I need something stronger than that like condition variables. – Helltone Apr 22 at 9:48
So the "minimum" consensus number of a mutex is 2. What is the "minimum" consensus number of a semaphore ? – Helltone Apr 22 at 12:28
But that implementation of a mutex won't be wait-free. You'll spin on the TAS instruction. – Mark Apr 22 at 12:31
(sorry, accidentally deleted that comment) – Mark Apr 22 at 12:32
I must confess, I've only skim-read the paper, but it's about analysing wait-free synchronisation. I don't think consensus number is really relevant to anything that blocks. – Mark Apr 22 at 12:40
show 1 more comment
vote up -2 vote down

From this article alone you can conclude that a semaphore must have a consensus number less than or equal to 2. Here's why:

On the third page of the article they state: "The fetch&add operation is quite flexible: it can be used for semaphores...". Since we know that fetch&add has consensus number equal to 2, Theorem 1 of that paper can then be used to show that a semaphore must have consensus number less than or equal to 2. The proof goes like this:


Proof

Assume that a wait-free implementation of semaphores by fetch&add exists. Further assume that a semaphore has consensus number greater than 2. We know that fetch&add has a consensus number of 2. From Theorem 1 we can conclude that there exists no wait-free implementation of a semaphore by fetch&add in a system of more than 2 processes. This contradicts the assumption that an implementation by fetch&add exists. Therefore, a semaphore must have a consensus number less than or equal to 2.

QED

link|flag
Hmm.. I'm pretty sure you cannot implement semaphores with mutexes, you also need condition variables or some other way to atomically unlock a mutex and enter a queue. – Helltone Apr 22 at 9:45
The last step doesn't follow. I could implement a mutex with compare-and-exchange. Does that make it infinite? Or I could implement a mutex with just a set, which would only be safe for one process. The point of the paper is to investigate non-blocking primitives, which a mutex is not. – Mark Apr 22 at 12:29
@Helltone The proof does not rely upon the implementation of semaphores with mutexes; It relies upon the fetch&add. However, you're wrong: you can implement semaphores with mutexes. picturel.com/ucr/node32.html. I don't see why reliance upon a condition variable for the implementation means you can't implement it. – Waylon Flinn Apr 22 at 13:22

Your Answer

Get an OpenID
or

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