Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Util / SafeBitVector32.cs / 1305376 / SafeBitVector32.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; namespace System.Web.Util { // // This is a multithreadsafe version of System.Collections.Specialized.BitVector32. // [Serializable] internal struct SafeBitVector32 { private volatile int _data; internal SafeBitVector32(int data) { this._data = data; } internal bool this[int bit] { get { int data = _data; return (data & bit) == bit; } set { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { break; } } } } internal bool ChangeValue(int bit, bool value) { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } if (oldData == newData) { return false; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { return true; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Threading; namespace System.Web.Util { // // This is a multithreadsafe version of System.Collections.Specialized.BitVector32. // [Serializable] internal struct SafeBitVector32 { private volatile int _data; internal SafeBitVector32(int data) { this._data = data; } internal bool this[int bit] { get { int data = _data; return (data & bit) == bit; } set { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { break; } } } } internal bool ChangeValue(int bit, bool value) { for (;;) { int oldData = _data; int newData; if (value) { newData = oldData | bit; } else { newData = oldData & ~bit; } if (oldData == newData) { return false; } #pragma warning disable 0420 int result = Interlocked.CompareExchange(ref _data, newData, oldData); #pragma warning restore 0420 if (result == oldData) { return true; } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Pair.cs
- CultureTableRecord.cs
- TreeViewImageIndexConverter.cs
- TimelineClockCollection.cs
- HostProtectionPermission.cs
- TextSpan.cs
- SerTrace.cs
- SharedStream.cs
- StrongNameSignatureInformation.cs
- SerializationAttributes.cs
- DataRowExtensions.cs
- FixedStringLookup.cs
- StoreAnnotationsMap.cs
- Accessors.cs
- VoiceInfo.cs
- ClientRuntimeConfig.cs
- RtfToXamlReader.cs
- XmlNamespaceDeclarationsAttribute.cs
- SelectionWordBreaker.cs
- DecoderNLS.cs
- StackOverflowException.cs
- OrderedParallelQuery.cs
- CommandEventArgs.cs
- BitmapCodecInfo.cs
- AnyAllSearchOperator.cs
- AuthenticationSection.cs
- PointConverter.cs
- ProgressBarAutomationPeer.cs
- DataTemplate.cs
- Message.cs
- HybridCollection.cs
- InstanceNotReadyException.cs
- SoapInteropTypes.cs
- PlatformCulture.cs
- BezierSegment.cs
- XmlArrayItemAttribute.cs
- URLAttribute.cs
- DocumentViewerHelper.cs
- TemplateXamlTreeBuilder.cs
- MultiSelector.cs
- SchemaHelper.cs
- GenericUriParser.cs
- AppSettingsExpressionBuilder.cs
- FileDialog.cs
- DictionaryBase.cs
- EnumMember.cs
- ProcessModelSection.cs
- CaseExpr.cs
- validationstate.cs
- ZipIOCentralDirectoryBlock.cs
- SqlDataSource.cs
- MatrixAnimationUsingPath.cs
- AssertUtility.cs
- InkCanvasAutomationPeer.cs
- KeyInstance.cs
- XmlSchemaInfo.cs
- ArgumentOutOfRangeException.cs
- ImmutableObjectAttribute.cs
- DiffuseMaterial.cs
- DataViewManagerListItemTypeDescriptor.cs
- PropertyChangedEventArgs.cs
- DivideByZeroException.cs
- DelegatingTypeDescriptionProvider.cs
- TargetInvocationException.cs
- XmlReflectionImporter.cs
- ACE.cs
- BaseAsyncResult.cs
- StandardBindingElement.cs
- DrawingDrawingContext.cs
- ImageAutomationPeer.cs
- Debug.cs
- CalendarButtonAutomationPeer.cs
- IconHelper.cs
- DataGridViewRowCancelEventArgs.cs
- HttpCacheVary.cs
- EntityDataSourceColumn.cs
- DesignerVerb.cs
- XmlChildEnumerator.cs
- _NegoState.cs
- SafeThemeHandle.cs
- SeverityFilter.cs
- TemplateControlParser.cs
- ContextStaticAttribute.cs
- DiscoveryClient.cs
- RectAnimation.cs
- QueryReaderSettings.cs
- UIAgentAsyncBeginRequest.cs
- PropVariant.cs
- AlternateViewCollection.cs
- ProxyWebPart.cs
- PartitionedStream.cs
- ChoiceConverter.cs
- BooleanFacetDescriptionElement.cs
- RecordManager.cs
- MessageQueuePermissionAttribute.cs
- Timer.cs
- InvokeBinder.cs
- AutomationPeer.cs
- SqlDataSourceSelectingEventArgs.cs
- InvalidComObjectException.cs