目录

同步原語

In multithreaded computing, the ABA problem occurs during synchronization, when a location is read twice, has the same value for both reads, and "value is the same" is used to indicate "nothing has changed". However, another thread can execute between the two reads and change the value, do other work, then change the value back, thus fooling the first thread in to thinking "nothing has changed" even though the second thread did work that violates that assumption.

http://en.wikipedia.org/wiki/ABA_problem

x86

锁无关的数据结构

一般證明鎖無關數據結構,會證明該演算法具有 Linearizability 且為 Non-blocking algorithm; 前者出自於 Linearizability: a correctness condition for concurrent objects,後者出自於 Wait-free synchronization 兩篇論文。

Specifically, linearizability guarantees that the invariants of a system are observed and preserved by all operations: if all operations individually preserve an invariant, the system as a whole will.

A history is a sequence of invocations and responses made of an object by a set of threads. Each invocation of a function will have a subsequent response. This can be used to model any use of an object. Suppose, for example, that two threads, A and B, both attempt to grab a lock, backing off if it's already taken. This would be modeled as both threads invoking the lock operation, then both threads receiving a response, one successful, one not.

… snip …

A sequential history is one in which all invocations have immediate responses.

A history is linearizable if:

- its invocations and responses can be reordered to yield a sequential history

- that sequential history is correct according to the sequential definition of the object

- if a response preceded an invocation in the original history, it must still precede it in the sequential reordering

http://en.wikipedia.org/wiki/Linearizability

A concurrent object is a data object shared by concurrent processes. Linearizability is a correctness condition for concurrent objects that exploits the semantics of abstract data types.

Linearizability: a correctness condition for concurrent objects

In computer science, a non-blocking algorithm ensures that threads competing for a shared resource do not have their execution indefinitely postponed by mutual exclusion. A non-blocking algorithm is lock-free if there is guaranteed system-wide progress; wait-free if there is also guaranteed per-thread progress.

… snip …

Wait-freedom is the strongest non-blocking guarantee of progress, combining guaranteed system-wide throughput with starvation-freedom.

… snip …

Lock-freedom allows individual threads to starve but guarantees system-wide throughput. An algorithm is lock-free if it satisfies that when the program threads are run sufficiently long at least one of the threads makes progress (for some sensible definition of progress). All wait-free algorithms are lock-free.

A deadlock is a situation in which two or more competing actions are each waiting for the other to finish, and thus neither ever does.

… snip …

A livelock is similar to a deadlock, except that the states of the processes involved in the livelock constantly change with regard to one another, none progressing. Livelock is a special case of resource starvation; the general definition only states that a specific process is not progressing.

http://en.wikipedia.org/wiki/Deadlock

… an implementation is nonblocking if it guarantees that some thread will complete an operation in a finite number of steps.

Wait-free synchronization - M. Herlihy

內存模型

在多緒環境下,主要考慮的是 memory consistency model。最簡單的是 sequential consistency model,它是一个最直观最易理解的多线程程序执行顺序的模型。

The preceding discussion on atomic reading begs a discussion on the differences between atomicity and ordering. As discussed, a word-sized read will always occur atomically. It will never interleave with a write to the same word; the read will always return the word in a consistent stateperhaps before the write completed, perhaps after, but never during. For example, if an integer is initially 42 and then set to 365, a read on the integer will always return 42 or 365 and never some commingling of the two values. This is atomicity.

It might be that your code wants something more than this, perhaps for the read to always occur before the pending write. This is not atomicity, but ordering. Atomicity ensures that instructions occur without interruption and that they complete either in their entirety or not at all. Ordering, on the other hand, ensures that the desired order of two or more instructionseven if they are to occur in separate threads of execution or even separate processorsis preserved.

The atomic operations discussed in this section guarantee only atomicity. Ordering is enforced via barrier operations, which we will discuss later in this chapter.

http://www.makelinux.net/books/lkd2/ch09lev1sec1

ARM

文件

外部連結