Created
September 28, 2018 13:20
-
-
Save Criteo-dotnet-blog/3f3bb7bd1cdc9d1a5f8516b0d8540d3d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void OnContentionStart(ContentionTraceData data) | |
{ | |
ContentionInfo info = _contentionStore.GetContentionInfo(data.ProcessID, data.ThreadID); | |
if (info == null) | |
return; | |
info.TimeStamp = data.TimeStamp; | |
info.ContentionStartRelativeMSec = data.TimeStampRelativeMSec; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment