- 1、本文档共97页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CS 333Introduction to Operating Systems Class 4 –
CS 333Introduction to Operating Systems Class 4 – Synchronization PrimitivesSemaphores Jonathan Walpole Computer Science Portland State University Using mutual exclusion for critical sections How can we enforce mutual exclusion? What about using locks ? Locks solve the problem of exclusive access to shared data. Acquiring a lock prevents concurrent access Expresses intention to enter critical section Assumption: Each shared data item has an associated lock All threads set the lock before accessing the shared data Every thread releases the lock after it is done Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Acquiring and releasing locks Mutex locks An abstract data type Used for synchronization and mutual exclusion The mutex is either: Locked (“the lock is held”) Unlocked (“the lock is free”) Mutex lock operations Lock (mutex) Acquire the lock if it is free Otherwise wait until it can be acquired Unlock (mutex) Release the lock If there are waiting threads wake up one of them How to use a mutex? But how can we implement a mutex? Lock and Unlock operations must be atomic ! Can we just set and clear a binary “lock” variable in memory? Many computers have some limited hardware support for setting locks Atomic Test and Set Lock instruction Atomic compare and swap operation These can be used to implement mutex locks Test-and-set-lock instruction (TSL, tset) A lock is a single word variable with two values 0 = FALSE = not locked 1 = TRUE = locked Test-and-set does the following atomically: Get the (old) value Set the lock to TRUE Return the old value If th
您可能关注的文档
- CAD正投影法基础.ppt
- Ch06普通股价值评估5.ppt
- CH2 问题就在我们的身边.ppt
- CH7 操作系统的安全与保护.ppt
- Chapter 11—possible test questions(20 points) Explain the.ppt
- Chapter 4 – Descriptive Spatial Statistics.ppt
- Chapter 6.5 指派问题3.ppt
- COMP 122 – Design and Analysis of Algorithms.ppt
- Compétitivitécot du travail et temps de travail.ppt
- Could-you-please-tell-me-where-the-restrooms-are课件4.ppt
文档评论(0)