• <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
            AV无码久久久久不卡蜜桃| 久久午夜综合久久| 日日噜噜夜夜狠狠久久丁香五月| 久久国产乱子伦免费精品| 久久精品成人免费网站| 人妻丰满?V无码久久不卡| 久久久噜噜噜久久熟女AA片| 精品无码久久久久久久动漫| 国产亚洲精久久久久久无码77777| 久久99免费视频| 亚洲伊人久久精品影院| 精品国产91久久久久久久a| 亚洲国产一成人久久精品| 久久99国产一区二区三区| 久久久精品人妻一区二区三区蜜桃| 久久久久国色AV免费观看| 久久婷婷国产综合精品| 久久成人小视频| 精品欧美一区二区三区久久久| 久久精品黄AA片一区二区三区| 亚洲国产成人精品女人久久久 | 久久人人爽人人澡人人高潮AV| 97精品依人久久久大香线蕉97 | av国内精品久久久久影院| 亚洲精品第一综合99久久| 国产巨作麻豆欧美亚洲综合久久| 国产精品一区二区久久不卡| 狠狠色丁香久久婷婷综合| 青青久久精品国产免费看| 久久久久国产视频电影| 国内精品久久久久久不卡影院 | 久久精品人妻中文系列| 一本大道久久东京热无码AV| 久久激情亚洲精品无码?V| 精品久久久久中文字幕一区| 国产毛片久久久久久国产毛片| 中文精品久久久久国产网址| 91精品婷婷国产综合久久| 国产日韩久久免费影院| 精品熟女少妇aⅴ免费久久| 欧美与黑人午夜性猛交久久久|