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
- BoundPropertyEntry.cs
- DataBindingCollection.cs
- VoiceChangeEventArgs.cs
- OdbcConnectionStringbuilder.cs
- ConnectionManagementSection.cs
- MergeLocalizationDirectives.cs
- PixelFormat.cs
- HelpInfo.cs
- NamespaceMapping.cs
- _ConnectionGroup.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- Win32MouseDevice.cs
- TreeNodeStyle.cs
- CodeAttributeDeclarationCollection.cs
- XmlBinaryReader.cs
- ProfileGroupSettingsCollection.cs
- TimeSpanSecondsConverter.cs
- EntityTransaction.cs
- TableLayoutPanel.cs
- String.cs
- QilFunction.cs
- LayoutDump.cs
- UpdateCommand.cs
- SR.cs
- RegexCharClass.cs
- TextElementCollection.cs
- XmlAttributes.cs
- MethodAccessException.cs
- ValidationErrorEventArgs.cs
- ExceptionHandler.cs
- PathParser.cs
- ScriptReference.cs
- BitmapEffectDrawing.cs
- WmiEventSink.cs
- Validator.cs
- FixedLineResult.cs
- WorkflowClientDeliverMessageWrapper.cs
- DLinqDataModelProvider.cs
- MediaTimeline.cs
- Deflater.cs
- ActionFrame.cs
- Model3DGroup.cs
- HtmlInputHidden.cs
- FontUnitConverter.cs
- SendKeys.cs
- CodeArrayIndexerExpression.cs
- SQLBinaryStorage.cs
- TimeEnumHelper.cs
- MouseEventArgs.cs
- DataObjectSettingDataEventArgs.cs
- ScriptServiceAttribute.cs
- CodeAttributeArgumentCollection.cs
- HMACRIPEMD160.cs
- AutomationIdentifierGuids.cs
- WebPartVerbCollection.cs
- ReferenceConverter.cs
- EncryptedReference.cs
- VoiceChangeEventArgs.cs
- ExpandedWrapper.cs
- SQLResource.cs
- ToolTipAutomationPeer.cs
- DataServiceQueryProvider.cs
- newinstructionaction.cs
- ExtendedPropertiesHandler.cs
- LoadGrammarCompletedEventArgs.cs
- AsyncSerializedWorker.cs
- DataProtection.cs
- ApplicationException.cs
- BlockUIContainer.cs
- DataFieldCollectionEditor.cs
- HtmlProps.cs
- DataConnectionHelper.cs
- CompilerInfo.cs
- CompoundFileDeflateTransform.cs
- WindowPattern.cs
- StaticResourceExtension.cs
- DetailsView.cs
- UnsafeNativeMethods.cs
- AsyncResult.cs
- Point3DCollection.cs
- SqlNodeAnnotations.cs
- XmlAtomicValue.cs
- BinaryObjectReader.cs
- DataGridViewMethods.cs
- XMLDiffLoader.cs
- ArrangedElement.cs
- Msec.cs
- DtrList.cs
- NameTable.cs
- ServiceModelEnhancedConfigurationElementCollection.cs
- GridViewUpdatedEventArgs.cs
- DateTimeConverter.cs
- CodeExporter.cs
- CompressedStack.cs
- CompensationDesigner.cs
- InstanceKeyCompleteException.cs
- EncodingInfo.cs
- RepeatButton.cs
- RemotingSurrogateSelector.cs
- XmlMapping.cs