Skip to content

Commit

Permalink
Fixed break
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc committed Nov 20, 2019
1 parent 0f65fbb commit 72ecc4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cs/src/core/ClientSession/ClientSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public async ValueTask CompleteCheckpointAsync()
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal void UnsafeResumeThread()
{
fht.epoch.Acquire();
fht.epoch.Resume();
fht.InternalRefresh(ctx);
}

Expand All @@ -199,7 +199,7 @@ internal void UnsafeResumeThread()
[MethodImpl(MethodImplOptions.AggressiveInlining)]
internal void UnsafeSuspendThread()
{
fht.epoch.Release();
fht.epoch.Suspend();
}

}
Expand Down

0 comments on commit 72ecc4f

Please sign in to comment.