首页 > 其他 > 详细

LKD: Chapter 9 An Introduction to Kernel Synchronization

时间:2016-01-20 19:13:23      阅读:193      评论:0      收藏:0      [点我收藏+]

  This chapter introduces some conception about kernel synchronization generally.

Critical Regions: Code paths that access and manipulate shared data.

Race Condition: Two threads of execution to be simultaneously executing within the same critical region.

  The threads hold locks; locks protect data.

Deadlocks: The threads all wait for each other, but they never make any progress toward releasing the resources that they already hold.

Lock Contention: A lock is currently in use but there is another thread trying to acquire.

Scalability: This is a measurement of how well a system can be expanded.

LKD: Chapter 9 An Introduction to Kernel Synchronization

原文:http://www.cnblogs.com/justforfun12/p/5145885.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!