码迷,mamicode.com
首页 > 其他好文 > 详细

LKD: Chapter 9 An Introduction to Kernel Synchronization

时间:2016-01-20 19:15:05      阅读:107      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!