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
- InternalsVisibleToAttribute.cs
- FreezableCollection.cs
- BinHexDecoder.cs
- MarginCollapsingState.cs
- OletxDependentTransaction.cs
- ValidationErrorEventArgs.cs
- PrinterResolution.cs
- OdbcConnectionString.cs
- DataGridViewComboBoxCell.cs
- FrameDimension.cs
- PermissionSetTriple.cs
- EventDriven.cs
- DataGridAutomationPeer.cs
- ScrollViewer.cs
- CacheHelper.cs
- TcpClientSocketManager.cs
- PasswordValidationException.cs
- MessageDescription.cs
- EntityKey.cs
- OracleBFile.cs
- Int32Animation.cs
- MatrixAnimationBase.cs
- SoapEnumAttribute.cs
- StrokeSerializer.cs
- DataRowChangeEvent.cs
- FileDialog_Vista.cs
- ConditionalDesigner.cs
- Operator.cs
- ZipPackagePart.cs
- UriSection.cs
- ConfigXmlWhitespace.cs
- StringArrayConverter.cs
- ColumnMap.cs
- EventSetter.cs
- ConstNode.cs
- BindingCollection.cs
- InternalsVisibleToAttribute.cs
- HandlerFactoryWrapper.cs
- ExpressionBindingCollection.cs
- AxisAngleRotation3D.cs
- FormsAuthenticationUserCollection.cs
- IEnumerable.cs
- Vector3DCollectionValueSerializer.cs
- DataReceivedEventArgs.cs
- RpcCryptoContext.cs
- UnmanagedMemoryStreamWrapper.cs
- ServicePoint.cs
- ImageField.cs
- WorkflowMarkupSerializerMapping.cs
- RadioButtonBaseAdapter.cs
- Header.cs
- dtdvalidator.cs
- WsdlHelpGeneratorElement.cs
- SignatureDescription.cs
- XmlSerializerNamespaces.cs
- AbsoluteQuery.cs
- BoundField.cs
- Point4D.cs
- Border.cs
- EFDataModelProvider.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- AttributeQuery.cs
- HealthMonitoringSection.cs
- PropertyChangedEventArgs.cs
- Mutex.cs
- XmlCharacterData.cs
- _UncName.cs
- ExpressionList.cs
- SqlBuilder.cs
- TcpConnectionPoolSettings.cs
- HtmlHistory.cs
- CustomError.cs
- IsolatedStorageException.cs
- QilUnary.cs
- SqlClientFactory.cs
- uribuilder.cs
- HwndPanningFeedback.cs
- ComMethodElementCollection.cs
- RegisteredDisposeScript.cs
- EntityTransaction.cs
- TextTreeUndoUnit.cs
- ModifyActivitiesPropertyDescriptor.cs
- InternalCache.cs
- InfoCardBaseException.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- Type.cs
- FontConverter.cs
- PassportIdentity.cs
- PersistenceException.cs
- CodeThrowExceptionStatement.cs
- Error.cs
- PropertyEmitterBase.cs
- WindowsImpersonationContext.cs
- CloseSequenceResponse.cs
- SynchronizedRandom.cs
- entityreference_tresulttype.cs
- XmlDataSourceNodeDescriptor.cs
- SqlTopReducer.cs
- FontWeights.cs
- StateManagedCollection.cs