You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The copy and the copyCorrectedForCoordinatedOmission methods in App_Packages\HdrHistogram\SynchronizedHistogram.cs are decorated with [MethodImpl(MethodImplOptions.Synchronized)] (which cause a lock on this when the methods are invoked) and also their code contains lock(this).
Is this redundant locking intentional?
The text was updated successfully, but these errors were encountered:
The
copy
and thecopyCorrectedForCoordinatedOmission
methods inApp_Packages\HdrHistogram\SynchronizedHistogram.cs
are decorated with[MethodImpl(MethodImplOptions.Synchronized)]
(which cause a lock onthis
when the methods are invoked) and also their code containslock(this)
.Is this redundant locking intentional?
The text was updated successfully, but these errors were encountered: