Mercurial > pub > ImplabNet
diff Implab/Parallels/Signal.cs @ 129:471f596b2603 v2
Added SharedLock to synchronization routines
author | cin |
---|---|
date | Thu, 29 Jan 2015 18:31:06 +0300 |
parents | 6241bff0cd64 |
children |
line wrap: on
line diff
--- a/Implab/Parallels/Signal.cs Thu Jan 29 05:09:31 2015 +0300 +++ b/Implab/Parallels/Signal.cs Thu Jan 29 18:31:06 2015 +0300 @@ -3,7 +3,7 @@ namespace Implab.Parallels { /// <summary> - /// Implements simple signalling logic using <see cref="Monitor.PulseAll(object)"/>. + /// Implements a simple signalling logic using <see cref="Monitor.PulseAll(object)"/>. /// </summary> public class Signal { readonly object m_lock = new object();