青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎(chǔ)} {C++ 高級} {C#界面,C++核心算法} {設(shè)計模式} {C#基礎(chǔ)}

C++多線程(四)

多線程同步之WIN API互鎖函數(shù) (可以避免使用CriticalSection或Mutex

一 互鎖函數(shù)

      互鎖函數(shù)的家族十分的龐大,可以查看msdn(http://msdn2.microsoft.com/en-us/library/ms686360.aspx)以InterLocked開始的函數(shù)都是戶數(shù)函數(shù)。使用互鎖函數(shù)的優(yōu)點是:他的速度要比其他的CriticalSection,Mutex,Event,Semaphore快很多。

二 簡單實例

      使用一些實例說明部分互鎖函數(shù)的使用:

1) LONG InterlockedExchangeAdd(   PLONG plAddend,LONG Increment);

簡單實例,在線程函數(shù)中對全局的變量自增,在開始使其為0,在線程都執(zhí)行完以后輸出全局變量的值,如果我們不使用互鎖函數(shù),則最后輸出的結(jié)果,大部分情況是不正確的,比如我們一共有10000個線程的話,則全局變量的值一般是比10000要??;但是如果我們使用互鎖函數(shù)來實現(xiàn)自增,則就快速的實現(xiàn)了線程安全,最后輸出的全局變量一定是10000.

#include <windows.h>
#include 
<process.h>
#include 
<stdio.h>

#define THREAD_MAX 100000

int g_x = 0;

unsigned  __stdcall ThreadEntity(
void * pVoid)
{
    g_x
++;
    
//InterlockedExchangeAdd(reinterpret_cast<long*>(&g_x),1);    
    return 1;        
}

int main()
{     

    HANDLE   hth[THREAD_MAX];
    unsigned  uiThreadID[THREAD_MAX];

    printf(
"start create children threadings:\n");
    
for(int i = 0; i < THREAD_MAX; ++i)
    
{
        hth[i] 
= (HANDLE)_beginthreadex( NULL,         // security
            0,            // stack size
            ThreadEntity,
            (
void*)&i,           // arg list
            0,  
            
&uiThreadID[i] );

        
if ( hth[i]== 0 )
            printf(
"Failed to create thread 1\n");        
    }


    WaitForMultipleObjects( THREAD_MAX, hth,
true,10000);   

    
for(int i = 0; i<THREAD_MAX; ++i)
        CloseHandle( hth[i] );
    
    printf(
"last: g_x is %d\n",g_x);

    printf(
"Primary thread terminating.\n");
}

在上面的代碼中使用了 //InterlockedExchangeAdd(reinterpret_cast<long*>(&g_x),1); 來實現(xiàn)g_x的線程安全的自增。  

2)使用LONG InterlockedExchange(PLONG plTarget,LONG lValue);實現(xiàn)循環(huán)鎖:

// Global variable indicating whether a shared resource is in use or not
BOOL g_fResourceInUse = FALSE;


void Func1() 
{
   
//Wait to access the resource.
   while(InterlockedExchange(&g_fResourceInUse, TRUE) == TRUE)
      Sleep(
0);

   
//Access the resource.

   

   
//We no longer need to access the resource.
   InterlockedExchange(&g_fResourceInUse, FALSE);
}

 
3)太多了,不舉了,以后用到了再放到這里把。

三 互鎖函數(shù)列表

一般的互鎖函數(shù):
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.

鏈表的互鎖函數(shù):
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 夢在天涯 閱讀(6939) 評論(9)  編輯 收藏 引用 所屬分類: CPlusPlus

評論

# re: C++多線程(四) 2007-07-27 09:30 若弱

第一個例子的結(jié)果在默認(rèn)編譯模式下,用InterlockedAdd和++操作結(jié)果是完全一樣的,根本不會出現(xiàn)線程安全的問題  回復(fù)  更多評論   

# re: C++多線程(四) 2007-07-27 14:17 dfl

++操作可能是atomic的

不過如果把print語句放到thread里面就能體現(xiàn)出帖子的要表達的意思了  回復(fù)  更多評論   

# re: C++多線程(四) 2007-07-27 17:40 夢在天涯

結(jié)果一樣嗎,我使用的vs2005,結(jié)果是不一樣啊
,最少我敢說有時是不一樣的啊,但可能有寫時候可能正好相同,這個取決與系統(tǒng)不同的線程中斷,這個不由我們控制。

如果看不到結(jié)果,你可以把線程數(shù)在加大。

++并不是atomic的,是有2條語句的。  回復(fù)  更多評論   

# re: C++多線程(四) 2007-09-26 16:37 GINA

reinterpret_cast<long*>(&g_x)
這個參數(shù)不太明白。。希望解釋下。謝謝 thank you  回復(fù)  更多評論   

# re: C++多線程(四) 2007-09-26 17:06 夢在天涯

reinterpret_cast<long*>(&g_x),是就取地址,然后轉(zhuǎn)化為指向long的指針。  回復(fù)  更多評論   

# re: C++多線程(四) 2008-01-21 21:07 小不點

這不就是原子操作嗎?好象只能用于操作單條語句,要是執(zhí)行多條語句是不是就不能用了呢?  回復(fù)  更多評論   

# re: C++多線程(四) 2008-06-23 10:15 pgmsoul

reinterpret_cast<long*>(&g_x)
寫成(long*)&g_x就完了,說真的,我很BS標(biāo)準(zhǔn)C++的寫法,一看就讓人覺的高深莫測.  回復(fù)  更多評論   

# re: C++多線程(四) 2009-06-10 11:12 aniki

這個例子在我的機器上的執(zhí)行結(jié)果有點怪,偶爾會出現(xiàn)小于THREAD_MAX的值,已經(jīng)使用InterlockedExchangeAdd(reinterpret_cast<long*>(&g_x),1); 了,不只為什么  回復(fù)  更多評論   

# re: C++多線程(四) 2010-09-15 17:34 liziyun537

@aniki
我也是這種情況  回復(fù)  更多評論   

公告

EMail:itech001#126.com

導(dǎo)航

統(tǒng)計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1814998
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              久久国产精品亚洲77777| 久久精品国产一区二区电影| 亚洲精品激情| 国产一区二区三区久久悠悠色av | 欧美一二三区在线观看| 亚洲国产视频一区二区| 美女爽到呻吟久久久久| 性欧美videos另类喷潮| 极品尤物久久久av免费看| 韩国av一区二区三区| 国产日产欧产精品推荐色| 国产午夜精品久久| 1204国产成人精品视频| 亚洲精品女人| 性欧美大战久久久久久久免费观看| 一区二区三区四区蜜桃| 男女精品网站| 欧美裸体一区二区三区| 在线观看日韩av先锋影音电影院| 亚洲一区二区在线免费观看| 免费成人激情视频| 欧美日韩理论| 精品福利电影| 亚洲色图综合久久| 久久亚洲私人国产精品va| 91久久一区二区| 午夜精品久久久久久久白皮肤| 久久精品一区| 国产精品美女久久福利网站| 亚洲国产成人不卡| 午夜国产不卡在线观看视频| 久久综合图片| 欧美在线看片| 国产精品一区二区三区成人| 91久久精品美女| 久久99在线观看| 亚洲伦理在线免费看| 欧美激情第五页| 亚洲美女91| 亚洲精品影视| 欧美午夜精品久久久| 亚洲一区在线免费观看| 亚洲免费黄色| 国产精品久久久久999| 国产精品99久久久久久久久久久久| 欧美高清在线播放| 欧美人与性动交α欧美精品济南到| 国内一区二区三区| 老司机午夜精品视频| 久久久999成人| 亚洲成色999久久网站| 国产精品福利久久久| 国产精品99久久不卡二区| 亚洲一区免费| 精品不卡视频| 亚洲国产精品久久久| 国产精品国产三级国产a| 久久精品国产v日韩v亚洲| 乱码第一页成人| 翔田千里一区二区| 欧美福利专区| 久久久91精品国产一区二区精品| 久久免费偷拍视频| 亚洲——在线| 欧美好骚综合网| 久久亚洲精品一区二区| 欧美精品在线视频| 免费日本视频一区| 国产欧美日韩激情| 亚洲国产精品黑人久久久| 国产精品免费视频观看| 欧美激情偷拍| 亚洲电影免费观看高清完整版在线观看| 亚洲激情国产精品| 91久久精品国产91久久| 久久久91精品| 久久午夜视频| 韩国美女久久| 久久精品夜色噜噜亚洲a∨| 亚洲精品欧美| 欧美成人免费全部观看天天性色| 久热精品视频在线| 伊人婷婷欧美激情| 老司机成人网| 欧美国产综合视频| 日韩一级精品视频在线观看| 另类尿喷潮videofree| 欧美成人一区二区三区在线观看| 亚洲欧美日韩中文播放| 久久精品亚洲精品| 亚洲国产精品t66y| 欧美激情亚洲自拍| 中文亚洲免费| 美女诱惑黄网站一区| 亚洲美女毛片| 国产精品女人久久久久久| 久久人人九九| 亚洲一区在线观看免费观看电影高清| 六月丁香综合| 亚洲高清在线观看| 欧美久久电影| 欧美在线观看视频在线| 女女同性精品视频| 小嫩嫩精品导航| 99精品国产热久久91蜜凸| 国产亚洲精品成人av久久ww| 欧美~级网站不卡| 久久国产精品72免费观看| 亚洲看片一区| 亚洲国产日韩欧美在线99| 久久国产精品久久国产精品| 最新成人av在线| 黄色国产精品| 国产自产精品| 狠狠色丁香婷婷综合久久片| 国产精品国产福利国产秒拍| 欧美精品久久天天躁| 久色婷婷小香蕉久久| 久久免费黄色| 欧美.www| 国产精品二区影院| 欧美日韩综合| 国产精品一区二区在线| 国产美女精品在线| 国产欧美精品一区二区三区介绍| 欧美视频免费在线| 国产精品夜夜夜| 一区二区三区免费观看| 亚洲最新中文字幕| 亚洲欧美日本国产专区一区| 中国成人黄色视屏| 新狼窝色av性久久久久久| 久久av在线| 欧美日韩1234| 国产一区视频网站| 亚洲精品视频二区| 性欧美超级视频| 亚洲第一精品夜夜躁人人爽| 99av国产精品欲麻豆| 欧美在线精品免播放器视频| 免费不卡中文字幕视频| 国产精品日韩精品欧美在线| 亚洲区在线播放| 久久久久亚洲综合| 中国成人亚色综合网站| 欧美精品v日韩精品v国产精品 | 美国成人直播| 亚洲一区国产视频| 欧美日韩福利在线观看| 亚洲国产日韩欧美在线图片 | 国产午夜精品美女视频明星a级| 在线观看亚洲精品| 久久中文字幕一区二区三区| 香蕉成人伊视频在线观看| 欧美性猛交一区二区三区精品| 亚洲精品日韩在线观看| 美女爽到呻吟久久久久| 久久精品亚洲乱码伦伦中文| 国产精品午夜电影| 欧美中文字幕| 久久av一区二区三区亚洲| 国产午夜亚洲精品不卡| 久久人人爽人人| 欧美不卡视频| 亚洲一区二区高清| 亚洲欧美激情四射在线日 | 亚洲视频第一页| 国产精品久久久久久妇女6080| 亚洲视频1区| 久久精品国产成人| 亚洲精品三级| 午夜精品在线| 亚洲精品欧美日韩专区| 亚洲午夜女主播在线直播| 国产一区二区三区黄| 亚洲激情第一区| 国产精品视频免费在线观看| 欧美96在线丨欧| 国产精品老牛| 亚洲激情偷拍| 国产亚洲人成a一在线v站 | 欧美亚洲免费电影| 一本色道久久综合亚洲精品不| 亚洲一区二区三区精品在线| 欧美伊人久久久久久久久影院| 亚洲狠狠丁香婷婷综合久久久| av成人天堂| 亚洲午夜精品一区二区三区他趣| 亚洲欧美另类中文字幕| 亚洲性图久久| 欧美精品情趣视频| 亚洲国产精品久久精品怡红院| 国产日韩精品一区二区三区| 亚洲靠逼com| 中文精品一区二区三区 | 欧美一区二区在线播放| 欧美日韩国产精品一区| 欧美激情精品久久久久久免费印度| 国产一区观看| 久久久av网站|