Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the examples mentioned for Out-of-order writes for double-checked locking scenarios (ref: IBM article & Wikipedia Article)

I could not understand the simple reason of why Thread1 would come of out synchronized block before the constructor is fully initialized. As per my understanding, creating "new" and the calling constructor should execute in-sequence and the synchronized lock should not be release till all the work in not completed.

Please let me know what I am missing here.

share|improve this question
Your question is not clear enough for me to see exactly what you are missing. Why not post a concrete code example and indicate where your confusion lies? – Marko Topolnik Jun 25 '12 at 19:02

4 Answers

up vote 11 down vote accepted

The constructor can have completed - but that doesn't mean that all the writes involved within that constructor have been made visible to other threads. The nasty situation is when the reference becomes visible to other threads (so they start using it) before the contents of the object become visible.

You might find Bill Pugh's article on it helps shed a little light, too.

Personally I just avoid double-checked locking like the plague, rather than trying to make it all work.

share|improve this answer
1  
+1 I agree, avoid double locking. Like I often say, keep it simple. – Peter Lawrey Jun 25 '12 at 19:08

The code in question is here:

public static Singleton getInstance()
{
  if (instance == null)
  {
    synchronized(Singleton.class) {  //1
      if (instance == null)          //2
        instance = new Singleton();  //3
    }
  }
  return instance;
}

Now the problem with this cannot be understood as long as you keep thinking that the code executes in the order it is written. Even if it does, there is the issue of cache synchronization across multiple processors (or cores) in a Symmetrical Multiprocessing architecture, which is the mainstream today.

Thread1 could for example publish the instance reference to the main memory, but fail to publish any other data inside the Singleton object that was created. Thread2 will observe the object in an inconsistent state.

As long as Thread2 doesn't enter the synchronized block, the cache synchronization doesn't have to happen, so Thread2 can go on indefinitely without ever observing the Singleton in a consistent state.

share|improve this answer
Thanks for explanation. But my question is simple: Thread1 acquired lock. It is executing line3 (creating object). I understand from your explanation that line 3 is composed of multiple lines. But my question is, no matter how many steps to execute line3, Thread1 should not leave the synchronized block (for thread2) till all the steps of line3 are completed for Thread1(including the constructor call). – Sandeep Jindal Jun 25 '12 at 19:39
My answer already covers exactly what you ask, you just don't fully understand it yet. Thread1 can have completed the whole getInstance method and the result may be that Thread2 now observes the non-null instance reference, but not the initialized contents of the Singleton object. The reason is given in the answer. – Marko Topolnik Jun 25 '12 at 19:42
Appologies, but it seems to be little new,different and difficult concept. Does that mean this: line3 has many steps, including calling constructor. This step (of calling constructor) is though called but writing to the object happens later, after thread1 started using it? If thats correct, does that mean that writing to the values of constructed happens asynchronously but some another thread (and not the thread1)? – Sandeep Jindal Jun 25 '12 at 20:00
1  
You need to stop thinking in terms of Java and start thinking in terms of the native code that implements this. On a multiprocessor machine each processor has its own memory cache which may or may not be synchronized with the main memory in the RAM. If thread1 executes on one processor and Thread2 on another, Thread2 can have a cached copy of locations belonging to the Singleton object, but with contents of before those locations were allocated to the object. – Marko Topolnik Jun 25 '12 at 20:30

Thread 2 checks to see if the instance is null when Thread 1 is at //3 .

public static Singleton getInstance()
{
if (instance == null)
{
synchronized(Singleton.class) {  //1
  if (instance == null)          //2
    instance = new Singleton();  //3
  }
}
 return instance;//4
}

At this point the memory for instance has been allocated from the heap and the pointer to it is stored in the instance reference, so the "if statement" executed by Thread 2 returns "false". Note that because instance is not null when Thread2 checks it, thread 2 does not enter the synchronized block and instead returns a reference to a " fully constructed, but partially initialized, Singleton object."

share|improve this answer
1  
Memory having been allocated has nothing to do with the instance reference being written. The write to the instance has been completed only after //3. – Marko Topolnik Jun 25 '12 at 19:23
That is my question: since Thread1 is still processing the constructor (because of line3 "new Singleton()") and this call is within the synchronized block, how does Thread2 get a chance to get into the synchronized block and check for null? – Sandeep Jindal Jun 25 '12 at 19:32
Thread2 does not enter the synchronized block in this case. It checks that the instance is not null , and since it's not , it skips over the the synchronized block to line 4 , and returns the instance – Vadim Tychonoff Jun 25 '12 at 19:39
your statement: "Thread 2 checks to see if the instance is null when Thread 1 is at //3" seems incorrect (with my current/incorrect knowledge). Thread 2 whould check the null condition once it gets into synchronized block, which will be done only after line3 in completely executed by Thread1. Please correct me. – Sandeep Jindal Jun 25 '12 at 19:42
Please note that the critical section begins with the keyword synchronized – Vadim Tychonoff Jun 25 '12 at 19:56
show 3 more comments

There's a general problem with code not being executed in the order it's written. In Java, a thread is only obligated to be consistent with itself. An instance created on one line with new has to be ready to go on the next. There's no such oblgation to other threads. For instance, if fieldA is 1 and 'fieldB' is 2 going into this code on thread 1:

fieldA = 5;
fieldB = 10;

and thread 2 runs this code:

int x = fieldA;
int y = FieldB;

x y values of 1 2, 5 2, and 5 10 are all to be expected, but 1 10--fieldB was set and/or picked up before fieldA--is perfectly legal, and likely, as well. So double-checked locking is a special case of a more general problem, and if you work with multiple threads you need to be aware of it, particularly if they all access the same fields.

One simple solution from Java 1.5 that should be mentioned: fields marked volatile are guaranteed to be read from main memory immediately before being referenced and written immediately after. If fieldA and fieldB above were declared volatile, an x y value of 1 10 would not be possible. If instance is volatile, double-checked locking works. There's a cost to using volatile fields, but it's less than synchronizing, so the double-checked locking becomes a pretty good idea. It's an even better idea because it avoids having a bunch of threads waiting to synch while CPU cores are sitting idle.

But you do want to understand this (if you can't be talked out of multithreading). On the one hand you need to avoid timing problems and on the other avoid bringing your program to a halt with all the threads waiting to get into synch blocks. And it's very difficult to understand.

share|improve this answer

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.