翻訳と辞書
Words near each other
・ Comparative Technology Transfer and Society
・ Comparative theology
・ Comparative Toxicogenomics Database
・ Comparative Tracking Index
・ Comparator
・ Comparator (disambiguation)
・ Comparator applications
・ Comparator groups analysis in Canadian equality law
・ Comparator hypothesis
・ Comparator system
・ Compare (journal)
・ Compare download
・ Compare Group
・ Compare the Meerkat
・ Compare++
Compare-and-swap
・ Compare.com
・ Compared to What
・ Comparethemarket.com
・ Comparettia
・ Comparettia coccinea
・ Comparettia falcata
・ Comparettia macroplectron
・ Comparettia speciosa
・ Comparex
・ Comparing Media Systems
・ Comparison
・ Comparison (grammar)
・ Comparison between Argentine provinces and countries by GDP (PPP) per capita
・ Comparison between Esperanto and Ido


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Compare-and-swap : ウィキペディア英語版
Compare-and-swap
In computer science, compare-and-swap (CAS) is an atomic instruction used in multithreading to achieve synchronization. It compares the contents of a memory location to a given value and, only if they are the same, modifies the contents of that memory location to a given new value. This is done as a single atomic operation. The atomicity guarantees that the new value is calculated based on up-to-date information; if the value had been updated by another thread in the meantime, the write would fail. The result of the operation must indicate whether it performed the substitution; this can be done either with a simple boolean response (this variant is often called compare-and-set), or by returning the value read from the memory location (''not'' the value written to it).
==Overview==
A compare-and-swap operation is an atomic version of the following pseudocode, where denotes access through a pointer:
function cas(p : pointer to int, old : int, new : int) returns bool
This operation is used to implement synchronization primitives like semaphores and mutexes, as well as more sophisticated lock-free and wait-free algorithms. Maurice Herlihy (1991) proved that CAS can implement more of these algorithms than atomic read, write, or fetch-and-add, and assuming a fairly large amount of memory, that it can implement all of them. CAS is equivalent to load-link/store-conditional, in the sense that a constant number of invocations of either primitive can be used to implement the other one in a wait-free manner.〔J. H. Anderson and M. Moir. "Universal constructions for multi-object operations". In ''Proc. 14th Annual ACM Symposium on Principles of Distributed Computing'', pages 184–193, 1995. See their Table 1, Figures 1 & 2 and Section 2 in particular.〕
Algorithms built around CAS typically read some key memory location and remember the old value. Based on that old value, they compute some new value. Then they try to swap in the new value using CAS, where the comparison checks for the location still being equal to the old value. If CAS indicates that the attempt has failed, it has to be repeated from the beginning: the location is re-read, a new value is re-computed and the CAS is tried again.
Instead of immediately retrying after a CAS fails, researchers have found that total system performance can be improved—in multiprocessor systems where many threads constantly update some particular shared variable—if threads that see their CAS fail use exponential backoff—in other words, wait a little before retrying the CAS.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Compare-and-swap」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.