- 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
- 2025年高考数学圆锥曲线常用二级结论.docx
- 甘肃省靖远县高三下学期第二次联考数学(理)试题扫描版含答案.doc
- 四川省德阳五中高三二诊考试英语试卷扫描版含答案.doc
- 广东省高三第一次模拟考试英语试题扫描版含答案.doc
- 四川省德阳五中高三二诊考试数学(文)试卷扫描版含答案.doc
- 山西省高三第一次模拟考试理科综合试题扫描版含答案.doc
- 四川省广安眉山内江遂宁高三第三次诊断性考试理综化学试题扫描版含答案.doc
- 河南省六市高三下学期第一次联考试题(3月)数学(文)扫描版含答案.doc
- 山西省忻州市2017-2018学年高二上学期期末考试生物试题扫描版.doc
- 2025年国有企业领导班子、市行政审批和政务信息管理局党组书记、局长对照“四个带头”含违纪行为为典型案例检视剖析材料【2篇文】.docx
最近下载
- 南斯拉夫的变迁.ppt
- 第7章 平面直角坐标系 专项练习 2022—2023学年人教版数学七年级下册.docx
- (沪教第一册)八年级生命科学 第1章 人体生命活动的基本条件 知识点梳理课件 .pptx
- 教科版 二年级下册科学 《磁铁能吸引什么》课件.ppt VIP
- 2024新信息科技三年级《第五单元 在线分享交流》大单元整体教学设计[2022课标].docx
- 组团社与地接社合同补充协议8篇.docx
- Maple做微积分..doc
- C-H-T 9016-2012 三维地理信息模型生产规范(正式版).docx VIP
- 6月事业单位联考《综合应用能力》(B类).doc VIP
- 三维地理信息模型数据库规范.pdf VIP
文档评论(0)