Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / Util / SafeBitVector32.cs / 1 / 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; } #if UNUSED_CODE internal int IntegerValue { get { return _data; } set { #pragma warning disable 0420 Interlocked.Exchange(ref _data, value); #pragma warning restore 0420 } } #endif 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; } #if UNUSED_CODE internal int IntegerValue { get { return _data; } set { #pragma warning disable 0420 Interlocked.Exchange(ref _data, value); #pragma warning restore 0420 } } #endif 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
- ExpressionBuilderCollection.cs
- ToolStripSeparatorRenderEventArgs.cs
- WorkflowMarkupSerializerMapping.cs
- IDQuery.cs
- ReferenceService.cs
- HelpProvider.cs
- _SslSessionsCache.cs
- ToolStripProgressBar.cs
- ConfigsHelper.cs
- CollectionDataContractAttribute.cs
- BulletChrome.cs
- TextBoxBase.cs
- WebBrowserSiteBase.cs
- FloatUtil.cs
- HttpListenerResponse.cs
- FrameworkTextComposition.cs
- XmlAnyElementAttributes.cs
- DragDrop.cs
- HWStack.cs
- ColorTransform.cs
- WebContext.cs
- HttpWebRequest.cs
- DbProviderFactories.cs
- StateInitialization.cs
- SeekStoryboard.cs
- ErrorInfoXmlDocument.cs
- ToolTipService.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- Transform3D.cs
- DecimalAnimationBase.cs
- XsdBuilder.cs
- SqlWebEventProvider.cs
- GeneratedContractType.cs
- EventBookmark.cs
- InternalsVisibleToAttribute.cs
- ServiceObjectContainer.cs
- BitmapEffectInput.cs
- ListDictionary.cs
- DataGridViewTopRowAccessibleObject.cs
- Vector3DConverter.cs
- ToolStripContainer.cs
- BrowserTree.cs
- User.cs
- VisualStyleInformation.cs
- TraceLevelHelper.cs
- GridViewDeletedEventArgs.cs
- DataSourceCache.cs
- coordinator.cs
- ObjectListItem.cs
- DataGridViewRowsAddedEventArgs.cs
- Int32Animation.cs
- remotingproxy.cs
- FileDialog_Vista.cs
- UrlPath.cs
- DeferrableContentConverter.cs
- XmlSerializationReader.cs
- UnmanagedBitmapWrapper.cs
- DirtyTextRange.cs
- UIHelper.cs
- ColumnMapProcessor.cs
- MonitoringDescriptionAttribute.cs
- WebPartConnectionsCancelEventArgs.cs
- DataBoundControlParameterTarget.cs
- Pen.cs
- TablePattern.cs
- DSACryptoServiceProvider.cs
- PasswordBox.cs
- ProfessionalColorTable.cs
- DrawingGroupDrawingContext.cs
- PathGeometry.cs
- MobileCapabilities.cs
- TypeConverter.cs
- FontWeightConverter.cs
- future.cs
- XmlParserContext.cs
- PropertyMapper.cs
- SecureUICommand.cs
- SingleAnimationBase.cs
- GenericParameterDataContract.cs
- ParseHttpDate.cs
- ListBox.cs
- DescriptionAttribute.cs
- basevalidator.cs
- StickyNoteContentControl.cs
- WrapPanel.cs
- SerTrace.cs
- ClientSettingsProvider.cs
- BaseServiceProvider.cs
- SmiContext.cs
- Rotation3DAnimation.cs
- ParagraphResult.cs
- ColumnHeader.cs
- SynchronizedDispatch.cs
- OrderedDictionaryStateHelper.cs
- LocatorPart.cs
- DomNameTable.cs
- IndependentAnimationStorage.cs
- AnonymousIdentificationSection.cs
- codemethodreferenceexpression.cs
- TaskFileService.cs