同步 (计算机科学)
计算机科学中, 同步(synchronization)是指两个不同但有联系的概念:进程同步与数据同步。进程同步指多个进程在特定点会合(join up)或者握手使得达成协议或者使得操作序列有序。数据同步指一个数据集的多份拷贝一致以维护完整性。常用进程同步原语实现数据同步。
线程或进程同步
编辑多个线程(或进程)要执行同一个特定的不可重入的程序代码块(称为临界区),这就需要适当的并发控制同步技术[1]。否则,可能会发生竞态条件。
另一种同步要求产生于特定的操作顺序,如应该先买机票然后登机。[3]
同步还需处理:
经典同步问题
编辑
参见
编辑- Future与promise, 纯函数式编程中的同步机制
参考文献
编辑- ^ Gramoli, V. More than you ever wanted to know about synchronization: Synchrobench, measuring the impact of the synchronization on concurrent algorithms (PDF). Proceedings of the 20th ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming. ACM: 1–10. 2015 [2016-08-15]. (原始内容存档 (PDF)于2016-03-04).
- ^ Janssen, Cory. Thread Synchronization. Techopedia. [23 November 2014]. (原始内容存档于2020-10-19).
- ^ Fatheisian, Halleh; Rosenberger, Eric. Synchronization. Department of Computer Science, George Mason University. [23 November 2014]. (原始内容存档于2015-01-28).
- Schneider, Fred B. On concurrent programming. Springer-Verlag New York, Inc. 1997. ISBN 0-387-94942-9.
外部链接
编辑- Anatomy of Linux synchronization methods at IBM developerWorks
- The Little Book of Semaphores(页面存档备份,存于互联网档案馆), by Allen B. Downey