• <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>

            沒畫完的畫

            喂馬 劈柴 BBQ~
            posts - 37, comments - 55, trackbacks - 0, articles - 0
              C++博客 ::  :: 新隨筆 :: 聯系 :: 聚合  :: 管理

            history:
            08.08.27   修改部份翻譯不當的地方   網友 wangk ; free2000fly  修改

            MSDN中關于信號量的解釋如下:
            {注:在某些書籍中 Semaphore Objects 翻譯為“信標”,有些則翻譯為“信號量”,本文均稱為“信號量”}
            信號量(Semaphore Objects)
            A semaphore object is a synchronization object that maintains a count between zero and a specified maximum value. The count is decremented each time a thread completes a wait for the semaphore object and incremented each time a thread releases the semaphore.
            信號量是維護0到指定最大值之間的計數器的同步對象.當線程完成一次信號量的等待時,計數器自減1,當線程釋放信號量對象時,計數器自增1
            {信號量用于對資源進行計數,它包括了
            1、帶符號的數值 保存最大的資源數
            2、帶符號的數值 保存當前可用的資源數
            }

            When the count reaches zero, no more threads can successfully wait for the semaphore object state to become signaled.  The state of a semaphore is set to signaled when its count is greater than zero, and nonsignaled when its count is zero.
            當計數器為0時,不會再有其它線程等待信號量為受信狀態.計數器的值大于0時信號量對象受信,等于0時便不會受信.

            The semaphore object is useful in controlling a shared resource that can support a limited number of users.
            信號量對象用于支持有限用戶的共享資源控制

            It acts as a gate that limits the number of threads sharing the resource to a specified maximum number.
            它可以作為限制線程共享資源最大值的一種方法

            For example, an application might place a limit on the number of windows that it creates. 
            It uses a semaphore with a maximum count equal to the window limit, decrementing the count whenever a window is created and incrementing it whenever a window is closed. The application specifies the semaphore object in call to one of the wait functions before each window is created. When the count is zero — indicating that the window limit has been reached — the wait function blocks execution of the window-creation code.

            例如,一個應用程序限制它所創建的窗體.把信號量的最大值設置為窗體個數的最大值, 當窗體創建時,信號量的值減少,當窗體關閉時,信號量的值增加.應用程序在窗體創建時調用 Wait 系列API函數.當計數為0時,證明窗體個數已經達到極限, wait 系列函數會阻塞創建窗體的代碼

            A thread uses the CreateSemaphore or CreateSemaphoreEx function to create a semaphore object. The creating thread specifies the initial count and the maximum value of the count for the object. The initial count must be neither less than zero nor greater than the maximum value.
            The creating thread can also specify a name for the semaphore object. Threads in other processes can open a handle to an existing semaphore object by specifying its name in a call to the OpenSemaphore function.

            線程可以使用 CreateSemaphore 或 CreateSemaphoreEx 創建信號量對象
            創建信號量的線程需要指出信號量的初始值和最大值
            初始值必須大于0且不大于所指定的最大值
            創建的線程同樣可以為信號量指定一個名字
            其它進程的線程可以通過這個名字,然后調用 OpenSemaphore() 來打開已經存在的信號量對象

            For additional information about names for mutex, event, semaphore, and timer objects, see Interprocess Synchronization.
            If more than one thread is waiting on a semaphore, a waiting thread is selected. Do not assume a first-in, first-out (FIFO) order. External events such as kernel-mode APCs can change the wait order.

            如果多于一條線程在等待信號量對象,wait 返回的那條線程并不會遵循先進先出(FIFO)的順序,因為內核模式可能改變它的順序。

            Each time one of the wait functions returns because the state of a semaphore was set to signaled, the count of the semaphore is decreased by one. The ReleaseSemaphore function increases a semaphore's count by a specified amount. The count can never be less than zero or greater than the maximum value.
            每次信號量受信,wait 系列函數就會返回, 同時計數會減1,
            ReleaseSemaphore() 函數用來增加信號量的計數值,這個值永遠大于等于0且小于等于指定的最大值

            The initial count of a semaphore is typically set to the maximum value. The count is then decremented from that level as the protected resource is consumed. Alternatively, you can create a semaphore with an initial count of zero to block access to the protected resource while the application is
            being initialized. After initialization, you can use ReleaseSemaphore to increment the count to the maximum value.

            信號量的初始值通常被設置為最大值,當被保護的資源被消耗時,其計數值會被減少。或者,你可以在創建信號值時把初始值指定為 0, 應用程序初始化時,保護資源會阻塞, 初始化后,你可以調用 ReleaseSemaphore  來增加信號量的計數值

            A thread that owns a mutex object can wait repeatedly for the same mutex object to become signaled without its execution becoming blocked. A thread that waits repeatedly for the same semaphore object, however, decrements the semaphore's count each time a wait operation is completed; the thread is blocked when the count gets to zero. Similarly, only the thread that owns a mutex can successfully call the ReleaseMutex function, though any thread can use ReleaseSemaphore to increase the count of a semaphore object.

            一條線程可以反復地等待 mutex 對象,在它受信前,不會去執行阻塞的代碼塊
            同樣,一條線程也可以反復地等待 信號量 對象,
            然而,在 wait 操作完成后,信號量的計數會減1,
            當為0時,線程會阻塞
            同樣地,只有當前擁有該mutex 的線程可以調用 ReleaseMutex 函數
            但可以在任何線程通過調用 ReleaseSemaphore 函數來增加 信號量的計數

            A thread can decrement a semaphore's count more than once by repeatedly specifying the same semaphore object in calls to any of the wait functions. However, calling one of the multiple-object wait functions with an array that contains multiple handles of the same semaphore does not result in multiple decrements.

            線程可以通過反復等待一個信號量對象來讓信號量的計數自減
            但是,如果調用 multiple-object wait 系列函數,等待的數組里指定為多個相同的信號量,這時并不會導致信號量的計數值多次自減。

            相關WIN-API函數:
            CreateSemaphore()
            OpenSemaphore()
            ReleaseSemaphore()
            WaitForSingleObject()
            CloseHandle()

            本文內容摘自MSDN,有些地方翻譯得不好
            歡迎交流,指正
            聯系QQ:    859934020(經常隱身)
            聯系E-mail:  kredraw@21cn.com

            Feedback

            # re: Windows多線程之信號量(Semaphore) {不斷補充中...最后更新08.08.26}[未登錄]  回復  更多評論   

            2008-08-27 10:17 by 陳梓瀚(vczh)
            這種玩意兒還有Mutex , WaitableTimer等等,可以用于進程間通訊。CriticalSection只能夠進程內部通訊。

            # re: Windows多線程之信號量(Semaphore) {不斷補充中...最后更新08.08.26}  回復  更多評論   

            2008-08-27 10:30 by free2000fly
            "同樣地,只有創建 mutex 的線程可以調用 ReleaseMutex 函數 "
            應為
            "同樣地,只有當前擁有 mutex 的線程可以成功地調用 ReleaseMutex 函數 "
            謝謝你的翻譯

            # re: Windows多線程之信號量(Semaphore) {不斷補充中...最后更新08.08.27}  回復  更多評論   

            2008-08-27 17:27 by 沒畫完的畫
            @陳梓瀚(vczh)
            嗯,有空一定補上去

            # re: Windows多線程之信號量(Semaphore) {不斷補充中...最后更新08.08.27}  回復  更多評論   

            2008-08-27 17:28 by 沒畫完的畫
            @free2000fly
            Thx
            情人伊人久久综合亚洲| 人妻无码αv中文字幕久久琪琪布| 色综合久久无码中文字幕| 久久久久AV综合网成人| 91精品国产高清久久久久久91| 亚洲日本va午夜中文字幕久久| 亚洲国产精品久久久天堂| 2021久久国自产拍精品| 亚洲а∨天堂久久精品9966| 狠狠色婷婷久久一区二区三区| 99久久精品费精品国产| 亚洲av成人无码久久精品| 欧美久久一级内射wwwwww.| 久久精品九九亚洲精品| 日韩精品久久久久久久电影| 久久精品国内一区二区三区| 久久精品一区二区三区AV| 久久免费99精品国产自在现线| 麻豆亚洲AV永久无码精品久久| 午夜肉伦伦影院久久精品免费看国产一区二区三区 | 久久婷婷五月综合色奶水99啪| 久久91精品国产91久久麻豆| 99精品国产综合久久久久五月天| 99国内精品久久久久久久| 久久精品蜜芽亚洲国产AV| 色欲综合久久躁天天躁蜜桃 | 久久无码AV一区二区三区| 色偷偷888欧美精品久久久| 色狠狠久久AV五月综合| 久久综合九色综合网站| 亚洲精品无码久久久久AV麻豆| 国产成人久久精品麻豆一区| 精品国产福利久久久| 91精品国产高清91久久久久久 | 精品欧美一区二区三区久久久| 久久精品国产精品亚洲精品| 2021久久精品国产99国产精品| 久久99热只有频精品8| 国产精品99久久精品| 日本福利片国产午夜久久| 99久久国产免费福利|