多线程编程 杂谈

2017-05-06
阅读 2 分钟
2.1k
False sharing is a term which applies when threads impact the performance ofeach other while modifying 【independent】 variables sharing the same cache line.

多线程编程:编程题

2017-04-30
阅读 5 分钟
3.4k
problem 1 {代码...} {代码...} {代码...} problem 2 {代码...} {代码...} {代码...} problem 3 {代码...} {代码...} {代码...} {代码...}

多线程编程:pthread_key_t AND __thread

2017-04-30
阅读 1 分钟
2.6k
pthread_key_t {代码...} {代码...} __thread {代码...}

设计模式:observer

2017-04-19
阅读 1 分钟
1.9k
结构图 代码 {代码...} {代码...}