www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - synchronized and thread

reply reimi gibbons <rei2x hotmail.com> writes:
if i encapsulate a part of statements within function with synchronized keyword
and then let says 1 thread is calling the function, then another thread try to
access it, will d put the later thread to wait (sleep) until the 1st call
finished it or it will signal failure to access? thanks
May 17 2009
parent grauzone <none example.net> writes:
reimi gibbons wrote:
 if i encapsulate a part of statements within function with synchronized
keyword and then let says 1 thread is calling the function, then another thread
try to access it, will d put the later thread to wait (sleep) until the 1st
call finished it or it will signal failure to access? thanks
The other thread will wait.
May 18 2009