Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting some really odd cache behavior for an MCS Lock in Java. Basically, it will work for up to four threads (the number of cores on my machine), but will get stuck for more. When I debug, I see that the program is getting stuck on the line

while (qnode.locked);

Inside of the lock() function. When debugging, I can see that one of the thread's QNode has locked set to false, but I'm guessing that's because the debugger causes the cache to update. I just threw "volatile" onto all variables as a desperate attempt to no avail. Here's the class that I'm using:

class MCSLock
{
private volatile AtomicReference<QNode> tail;
private volatile ThreadLocal<QNode> myNode;

public MCSLock()
{
    tail = new AtomicReference<QNode>(null);
    myNode = new ThreadLocal<QNode>()
            {
                protected QNode initialValue() { return new QNode(); }
            };
}

public void lock()
{
    QNode qnode = myNode.get();
    QNode pred = tail.getAndSet(qnode);
    if (pred != null)
    {
        qnode.locked = true;
        pred.next = qnode;
        while (qnode.locked);
    }
}

public void unlock()
{
    QNode qnode = myNode.get();
    if (qnode.next == null)
    {
        if (tail.compareAndSet(qnode, null)) return;
        while (qnode.next == null);
    }
    qnode.next.locked = false;
    qnode.next = null;
}

private class QNode
{
    volatile boolean locked = false;
    volatile QNode next = null;
}
}
share|improve this question
Does it work if you change QNode to use an AtomicBoolean and an AtomicReference? – msandiford Oct 30 '12 at 20:49
I don't know nearly enough about concurrency in Java to be able to say with confidence what's going on, and i suspect that's true of almost everyone on SO. You might like to take this to the concurrency-interest mailing list, where the great and the good of the Java concurrency world gather. – Tom Anderson Oct 30 '12 at 22:21
@msandiford Sadly, it does not :( – user1786282 Oct 31 '12 at 3:37
Just tested it, and it works OK for me up to 10 thread. Can you post your failing test code as well? Which JDK are you using? – msandiford Oct 31 '12 at 8:08
@msandiford My test code is fairly lengthy, but this is the general idea: count 1 to 1200000 using n threads where n goes from 1 to 6. If you don't use a large number, or you don't have enough contention, then the code will probably work. The idea here is to make sure it works under stress. – user1786282 Oct 31 '12 at 22:07

2 Answers

up vote 0 down vote accepted

Your code works! However, my guess is that your system isn't good enough to do >4 threads quickly.

Running on a dual-core i5, execution hung on 5 threads

Running on a quad-core overclocked i7, execution completed on 5 threads as expected. Woo!

share|improve this answer
This is a good comment to help to confirm what the asker suspected. However this doesn't answer the the implied question of how to make the project work with only 4 active threads available. Consider relocating this as a comment on the question. – Joshua Berry Oct 30 '12 at 22:28
Hmm, okay that's odd. Thanks for double checking it for me! I ran it on my machine with an OC'd i5 at 4.6 GHz, so something odd must be going on here. Maybe i7's have better, more consistent cache behavior? Oh well, at least it's not my fault :) – user1786282 Oct 31 '12 at 0:53

while (qnode.locked); doesn't do anything as far as i can see . Maybe you mean

    do {
        pred.next = qnode;
        // update qnode
       } while (qnode.locked);
share|improve this answer
No, that part works. The idea is to spin on that Thread's QNode. The volatile keyword should force the cache to update. I've already tried a similar approach and like I said, it works for up to and including 4 threads – user1786282 Oct 30 '12 at 18:35
Usually the construct is while(!available) {lock.wait();} but your code is not giving up the lock. If your building your own lock implementation I would suggest to subclass AbstractQueuedSynchronizer and use it as a helper class. – clinton Oct 31 '12 at 4:39
The point of this is to implement an MCS lock. The syntax, etc. is correct, Java is just not updating the cache. Also, why would you use a lock to implement a lock??? – user1786282 Oct 31 '12 at 14:44

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.