digitalmars.D.learn - synchronized and thread
- reimi gibbons <rei2x hotmail.com> May 17 2009
- grauzone <none example.net> May 18 2009
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
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








grauzone <none example.net>