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;
}
}
QNodeto use anAtomicBooleanand anAtomicReference? – msandiford Oct 30 '12 at 20:49