When accessing a SharedArray do the other workers wait when at one moment in time a specific worker is changing some entry another worker would like to access to too? for example power=SharedArray(Int64,10) @parallel for i=1,100
if power(1)==0 power(1) = something end end
