1
我有一個內含fetch_and_store操作的算法。除了這一行,我全面理解算法:pred : ^qnode := I->prev := fetch_and_store (L, I)
。這是CLH算法(用於併發編程)。有人可以幫助我理解這一部分。什麼fetch_and_store操作確實
算法:http://www.cs.rochester.edu/research/synchronization/pseudocode/ss.html#clh
所以這是一個原子交換。像比較和交換,但沒有比較。 –