More comment clarity

This commit is contained in:
Ben Adams 2015-10-04 08:32:17 -04:00 committed by Louis DeJardin
parent 47973541b5
commit 6b0fa776ca
2 changed files with 4 additions and 4 deletions

View File

@ -197,8 +197,8 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
Extra[key] = feature;
// Altering only an individual bit of the long
// so need to make sure other concurrent changes are not overridden
// in a lock-free manner
// so need to make sure other concurrent bit changes are not overridden
// in an atomic yet lock-free manner
long currentFeatureFlags;
long updatedFeatureFlags;

View File

@ -94,8 +94,8 @@ namespace Microsoft.AspNet.Server.Kestrel.Http
Extra[key] = feature;
// Altering only an individual bit of the long
// so need to make sure other concurrent changes are not overridden
// in a lock-free manner
// so need to make sure other concurrent bit changes are not overridden
// in an atomic yet lock-free manner
long currentFeatureFlags;
long updatedFeatureFlags;