mutex 中文意思是什麼

mutex 解釋
互斥標記
  1. Mutex provides mutual exclusion for thread synchronization

    為線程同步提供互斥。
  2. The call blocks until the mutex is available, or until the optional timeout interval elapses

    該調用會一直阻塞到mutex可用,或直至達到可選的超時間隔。
  3. This paper probes into the method of designing device driver under linux, with emphasis on module, interruption mechanism, dma, and presents method to avoid resource dead lock and realize cooperation and mutex among processes

    重點介紹了設備驅動程序開發過程中涉及到的module機制、中斷機制、 dma傳送等問題,提出了避免資源死鎖,實現進程間合作和互斥的方法。
  4. The function waits until the mutex becomes unlocked

    函數會等待互斥被解鎖。
  5. Because threads do not ever have to wait for a lock sometimes called a mutex or critical section, depending on the terminology of your threading platform

    無鎖定演算法,因為線程不必再等待鎖定(有時稱為互斥或關鍵部分,這取決于線程平臺的術語) 。
  6. When you get the set of all audit rules for a mutex, the set contains the minimum number of rules currently required to express all the access control entries

    在獲取某個mutex的所有審核規則的集合時,該集合包含當前表示所有訪問控制項所需要的最低數量的規則。
  7. It also checks whether the mutex is unlocked at that time see listing

    它還會檢查互斥在那個時刻是不是解除鎖定的(見清單
  8. Here is the win32 sample code to acquire a mutex within a process see

    這里是獲得進程內互斥的win32示例代碼(見
  9. The error is not due to the locked mutex

    那個錯誤不是歸咎于被鎖定的互斥。
  10. Here is another win32 sample code to acquire mutex between processes

    這里是獲得進程間互斥的另一win32示例代碼。
  11. A mutex provides exclusive access control for a resource between threads, as shown in

    所示,互斥提供線程間資源的獨占訪問控制。
  12. When used for inter - process synchronization, a mutex is called a named mutex because it is to be used in another application, and therefore it cannot be shared by means of a global or static variable

    當用於進程間同步時, mutex稱為「命名mutex 」 ,因為它將用於另一個應用程序,因此它不能通過全局變量或靜態變量共享。
  13. Gets the abandoned mutex that caused the exception, if known

    獲取導致異常的被放棄的互斥體(如果已知的話) 。
  14. Method, the mutex returned is the abandoned mutex with the lowest index in the array of

    是被放棄的互斥體,其最低索引位於傳遞給
  15. Gets the index of the abandoned mutex that caused the exception, if known

    獲取導致異常的被放棄的互斥體的索引(如果已知的話) 。
  16. Class with a specified index for the abandoned mutex, if applicable, and a

    用被放棄的互斥體的指定索引(如果可用)和表示該互斥體的
  17. Mutual exclusion can be achieved with the use of a semaphore or mutex

    互斥現象能由使用信號燈或互斥完成。
  18. While writes to volatile variables are guaranteed to be immediately visible to other threads, there is no way to render a read - modify - write sequence of operations atomic, meaning, for example, that a volatile variable cannot be used to reliably implement a mutex mutual exclusion lock or a counter

    雖然可以保證其他變量可以立即看到對可變變量的寫入,但無法呈現原子操作的讀-修改-寫順序,這意味著(比如說)可變變量無法用來可靠地實現互斥(互斥鎖定)或計數器。
  19. The combination of mutex lock and request counting is used to maintain the sychronization of poa " s states

    在我們的設計中通過在poa上引入派發策略來支持「請求級」派發。
  20. Initializes a new instance of the mutex class with a boolean value that indicates whether the calling thread should have initial ownership of the mutex, a string that is the name of the mutex, a boolean variable that, when the method returns, indicates whether the calling thread was granted initial ownership of the mutex, and the access control security to be applied to the named mutex

    使用一個指示調用線程是否應擁有互斥體的初始所屬權的布爾值、一個作為互斥體名稱的字元串、一個在方法返回時指示調用線程是否被授予互斥體的初始所屬權的布爾變量、以及要應用於已命名的互斥體的訪問控制安全性來初始化
分享友人