C++多線程(四)
一 互鎖函數
互鎖函數的家族十分的龐大,可以查看msdn(http://msdn2.microsoft.com/en-us/library/ms686360.aspx)以InterLocked開始的函數都是戶數函數。使用互鎖函數的優點是:他的速度要比其他的CriticalSection,Mutex,Event,Semaphore快很多。
二 簡單實例
使用一些實例說明部分互鎖函數的使用:
1) LONG InterlockedExchangeAdd( PLONG plAddend,LONG Increment);
簡單實例,在線程函數中對全局的變量自增,在開始使其為0,在線程都執行完以后輸出全局變量的值,如果我們不使用互鎖函數,則最后輸出的結果,大部分情況是不正確的,比如我們一共有10000個線程的話,則全局變量的值一般是比10000要??;但是如果我們使用互鎖函數來實現自增,則就快速的實現了線程安全,最后輸出的全局變量一定是10000.

















































在上面的代碼中使用了 //InterlockedExchangeAdd(reinterpret_cast<long*>(&g_x),1); 來實現g_x的線程安全的自增。
2)使用LONG InterlockedExchange(PLONG plTarget,LONG lValue);實現循環鎖:






















3)太多了,不舉了,以后用到了再放到這里把。
三 互鎖函數列表
一般的互鎖函數:
Interlocked function | Description |
---|---|
InterlockedAdd | Performs an atomic addition operation on the specified LONG values. |
InterlockedAdd64 | Performs an atomic addition operation on the specified LONGLONG values. |
InterlockedAddAcquire | Performs an atomic addition operation on the specified LONG values. The operation is performed with acquire memory access semantics. |
InterlockedAddAcquire64 | Performs an atomic addition operation on the specified LONGLONG values. The operation is performed with acquire memory access semantics. |
InterlockedAddRelease | Performs an atomic addition operation on the specified LONG values. The operation is performed with release memory access semantics. |
InterlockedAddRelease64 | Performs an atomic addition operation on the specified LONGLONG values. The operation is performed with release memory access semantics. |
InterlockedAnd | Performs an atomic AND operation on the specified LONG values. |
InterlockedAndAcquire | Performs an atomic AND operation on the specified LONG values. The operation is performed with acquire memory access semantics. |
InterlockedAndRelease | Performs an atomic AND operation on the specified LONG values. The operation is performed with release memory access semantics. |
InterlockedAnd8 | Performs an atomic AND operation on the specified char values. |
InterlockedAnd8Acquire | Performs an atomic AND operation on the specified char values. The operation is performed with acquire memory access semantics. |
InterlockedAnd8Release | Performs an atomic AND operation on the specified char values. The operation is performed with release memory access semantics. |
InterlockedAnd16 | Performs an atomic AND operation on the specified SHORT values. |
InterlockedAnd16Acquire | Performs an atomic AND operation on the specified SHORT values. The operation is performed with acquire memory access semantics. |
InterlockedAnd16Release | Performs an atomic AND operation on the specified SHORT values. The operation is performed with release memory access semantics. |
InterlockedAnd64 | Performs an atomic AND operation on the specified LONGLONG values. |
InterlockedAnd64Acquire | Performs an atomic AND operation on the specified LONGLONG values. The operation is performed with acquire memory access semantics. |
InterlockedAnd64Release | Performs an atomic AND operation on the specified LONGLONG values. The operation is performed with release memory access semantics. |
InterlockedBitTestAndReset | Tests the specified bit of the specified LONG value and sets it to 0. |
InterlockedBitTestAndReset64 | Tests the specified bit of the specified LONG64 value and sets it to 0. |
InterlockedBitTestAndSet | Tests the specified bit of the specified LONG value and sets it to 1. |
InterlockedBitTestAndSet64 | Tests the specified bit of the specified LONG64 value and sets it to 1. |
InterlockedCompare64Exchange128 | Performs an atomic compare-and-exchange operation on the specified values. The function compares the specified 64-bit values and exchanges with the specified 128-bit value based on the outcome of the comparison. |
InterlockedCompare64ExchangeAcquire128 | Performs an atomic compare-and-exchange operation on the specified values. The function compares the specified 64-bit values and exchanges with the specified 128-bit value based on the outcome of the comparison. The operation is performed with acquire memory access semantics. |
InterlockedCompare64ExchangeRelease128 | Performs an atomic compare-and-exchange operation on the specified values. The function compares the specified 64-bit values and exchanges with the specified 128-bit value based on the outcome of the comparison. The operation is performed with release memory access semantics. |
InterlockedCompareExchange | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 32-bit values and exchanges with another 32-bit value based on the outcome of the comparison. |
InterlockedCompareExchange64 | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 64-bit values and exchanges with another 64-bit value based on the outcome of the comparison. |
InterlockedCompareExchangeAcquire | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 32-bit values and exchanges with another 32-bit value based on the outcome of the comparison. The operation is performed with acquire memory access semantics. |
InterlockedCompareExchangeAcquire64 | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 64-bit values and exchanges with another 64-bit value based on the outcome of the comparison. The exchange is performed with acquire memory access semantics. |
InterlockedCompareExchangePointer | Performs an atomic compare-and-exchange operation on the specified pointer values. The function compares two specified pointer values and exchanges with another pointer value based on the outcome of the comparison. |
InterlockedCompareExchangePointerAcquire | Performs an atomic compare-and-exchange operation on the specified pointer values. The function compares two specified pointer values and exchanges with another pointer value based on the outcome of the comparison. The operation is performed with acquire memory access semantics. |
InterlockedCompareExchangePointerRelease | Performs an atomic compare-and-exchange operation on the specified pointer values. The function compares two specified pointer values and exchanges with another pointer value based on the outcome of the comparison. The operation is performed with release memory access semantics. |
InterlockedCompareExchangeRelease | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 32-bit values and exchanges with another 32-bit value based on the outcome of the comparison. The exchange is performed with release memory access semantics. |
InterlockedCompareExchangeRelease64 | Performs an atomic compare-and-exchange operation on the specified values. The function compares two specified 64-bit values and exchanges with another 64-bit value based on the outcome of the comparison. The exchange is performed with release memory access semantics. |
InterlockedDecrement | Decrements (decreases by one) the value of the specified 32-bit variable as an atomic operation. |
InterlockedDecrement64 | Decrements (decreases by one) the value of the specified 64-bit variable as an atomic operation. |
InterlockedDecrementAcquire | Decrements (decreases by one) the value of the specified 32-bit variable as an atomic operation. The operation is performed with acquire memory access semantics. |
InterlockedDecrementAcquire64 | Decrements (decreases by one) the value of the specified 64-bit variable as an atomic operation. The operation is performed with acquire memory access semantics. |
InterlockedDecrementRelease | Decrements (decreases by one) the value of the specified 32-bit variable as an atomic operation. The operation is performed with release memory access semantics. |
InterlockedDecrementRelease64 | Decrements (decreases by one) the value of the specified 64-bit variable as an atomic operation. The operation is performed with release memory access semantics. |
InterlockedExchange | Sets a 32-bit variable to the specified value as an atomic operation. |
InterlockedExchange64 | Sets a 64-bit variable to the specified value as an atomic operation. |
InterlockedExchangeAcquire | Sets a 32-bit variable to the specified value as an atomic operation. The operation is performed with acquire memory access semantics. |
InterlockedExchangeAcquire64 | Sets a 32-bit variable to the specified value as an atomic operation. The operation is performed with acquire memory access semantics. |
InterlockedExchangeAdd | Performs an atomic addition of two 32-bit values. |
InterlockedExchangeAdd64 | Performs an atomic addition of two 64-bit values. |
InterlockedExchangeAddAcquire | Performs an atomic addition of two 32-bit values. The operation is performed with acquire memory access semantics. |
InterlockedExchangeAddAcquire64 | Performs an atomic addition of two 64-bit values. The operation is performed with acquire memory access semantics. |
InterlockedExchangeAddRelease | Performs an atomic addition of two 32-bit values. The operation is performed with release memory access semantics. |
InterlockedExchangeAddRelease64 | Performs an atomic addition of two 64-bit values. The operation is performed with release memory access semantics. |
InterlockedExchangePointer | Atomically exchanges a pair of pointer values. |
InterlockedExchangePointerAcquire | Atomically exchanges a pair of pointer values. The operation is performed with acquire memory access semantics. |
InterlockedIncrement | Increments (increases by one) the value of the specified 32-bit variable as an atomic operation. |
InterlockedIncrement64 | Increments (increases by one) the value of the specified 64-bit variable as an atomic operation. |
InterlockedIncrementAcquire | Increments (increases by one) the value of the specified 32-bit variable as an atomic operation. The operation is performed using acquire memory access semantics. |
InterlockedIncrementAcquire64 | Increments (increases by one) the value of the specified 64-bit variable as an atomic operation. The operation is performed using acquire memory access semantics. |
InterlockedIncrementRelease | Increments (increases by one) the value of the specified 32-bit variable as an atomic operation. The operation is performed using release memory access semantics. |
InterlockedIncrementRelease64 | Increments (increases by one) the value of the specified 64-bit variable as an atomic operation. The operation is performed using release memory access semantics. |
InterlockedOr | Performs an atomic OR operation on the specified LONG values. |
InterlockedOrAcquire | Performs an atomic OR operation on the specified LONG values. The operation is performed with acquire memory access semantics. |
InterlockedOrRelease | Performs an atomic OR operation on the specified LONG values. The operation is performed with release memory access semantics. |
InterlockedOr8 | Performs an atomic OR operation on the specified char values. |
InterlockedOr8Acquire | Performs an atomic OR operation on the specified char values. The operation is performed with acquire memory access semantics. |
InterlockedOr8Release | Performs an atomic OR operation on the specified char values. The operation is performed with release memory access semantics. |
InterlockedOr16 | Performs an atomic OR operation on the specified SHORT values. |
InterlockedOr16Acquire | Performs an atomic OR operation on the specified SHORT values. The operation is performed with acquire memory access semantics. |
InterlockedOr16Release | Performs an atomic OR operation on the specified SHORT values. The operation is performed with release memory access semantics. |
InterlockedOr64 | Performs an atomic OR operation on the specified LONGLONG values. |
InterlockedOr64Acquire | Performs an atomic OR operation on the specified LONGLONG values. The operation is performed with acquire memory access semantics. |
InterlockedOr64Release | Performs an atomic OR operation on the specified LONGLONG values. The operation is performed with release memory access semantics. |
InterlockedXor | Performs an atomic XOR operation on the specified LONG values. |
InterlockedXorAcquire | Performs an atomic XOR operation on the specified LONG values. The operation is performed with acquire memory access semantics. |
InterlockedXorRelease | Performs an atomic XOR operation on the specified LONG values. The operation is performed with release memory access semantics. |
InterlockedXor8 | Performs an atomic XOR operation on the specified char values. |
InterlockedXor8Acquire | Performs an atomic XOR operation on the specified char values. The operation is performed with acquire memory access semantics. |
InterlockedXor8Release | Performs an atomic XOR operation on the specified char values. The operation is performed with release memory access semantics. |
InterlockedXor16 | Performs an atomic XOR operation on the specified SHORT values. |
InterlockedXor16Acquire | Performs an atomic XOR operation on the specified SHORT values. The operation is performed with acquire memory access semantics. |
InterlockedXor16Release | Performs an atomic XOR operation on the specified SHORT values. The operation is performed with release memory access semantics. |
InterlockedXor64 | Performs an atomic XOR operation on the specified LONGLONG values. |
InterlockedXor64Acquire | Performs an atomic XOR operation on the specified LONGLONG values. The operation is performed with acquire memory access semantics. |
InterlockedXor64Release | Performs an atomic XOR operation on the specified LONGLONG values. The operation is performed with release memory access semantics. |
鏈表的互鎖函數:
Singly-linked list function | Description |
---|---|
InitializeSListHead | Initializes the head of a singly linked list. |
InterlockedFlushSList | Flushes the entire list of items in a singly linked list. |
InterlockedPopEntrySList | Removes an item from the front of a singly linked list. |
InterlockedPushEntrySList | Inserts an item at the front of a singly linked list. |
QueryDepthSList | Retrieves the number of entries in the specified singly linked list. |
RtlFirstEntrySList | Retrieves the first entry in a singly linked list. |
RtlInitializeSListHead | Initializes the head of a singly linked list. Applications should call InitializeSListHead instead. |
RtlInterlockedFlushSList | Flushes the entire list of items in a singly linked list. Applications should call InterlockedFlushSList instead. |
RtlInterlockedPopEntrySList | Removes an item from the front of a singly linked list. Applications should call InterlockedPopEntrySList instead. |
RtlInterlockedPushEntrySList | Inserts an item at the front of a singly linked list. Applications should call InterlockedPushEntrySList instead. |
RtlQueryDepthSList | Retrieves the number of entries in the specified singly linked list. Applications should call QueryDepthSList instead. |
posted on 2007-07-26 22:29 夢在天涯 閱讀(6913) 評論(9) 編輯 收藏 引用 所屬分類: CPlusPlus