




已阅读5页,还剩48页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1,Concurrency:DeadlockandStarvation,Chapter6,2,Deadlock,Eachprocessinaprocessgroupiswaitingforsomeresourceoccupiedbyanotherprocessofthesamegroup,sothateveryprocessofthegroupisinstarvationPermanentblockingofasetofprocessesthateithercompeteforsystemresourcesorcommunicatewitheachotherNoefficientsolutionInvolveconflictingneedsforresourcesbytwoormoreprocesses,3,P1,P2,P3,P4,4,ProcessPProcessQGetAGetBGetBGetAReleaseAReleaseBReleaseBReleaseA,5,ProcessPProcessQGetAGetBReleaseAGetAGetBReleaseBReleaseBReleaseA,6,ReusableResources,UsedbyonlyoneprocessatatimeandnotdepletedbythatuseProcessesobtainresourcesthattheylaterreleaseforreusebyotherprocessesProcessors,I/Ochannels,mainandsecondarymemory,devices,anddatastructuressuchasfiles,databases,andsemaphoresDeadlockoccursifeachprocessholdsoneresourceandrequeststheother,7,ExampleofDeadlock,DeadlockwouldbehappenedifExecutingsequenceisp0p1q0q1p2q2,8,AnotherExampleofDeadlock,Spaceisavailableforallocationof200Kbytes,andthefollowingsequenceofeventsoccurDeadlockoccursifbothprocessesprogresstotheirsecondrequest,P1,.,.,Request80Kbytes;,Request60Kbytes;,P2,.,.,Request70Kbytes;,Request80Kbytes;,9,ConsumableResources,Created(produced)anddestroyed(consumed)Interrupts,signals,messages,andinformationinI/ObuffersDeadlockmayoccurifaReceivemessageisblockingMaytakeararecombinationofeventstocausedeadlock,10,ExampleofDeadlock,Deadlockoccursifreceivesareblocking,P1,.,.,Receive(P2);,Send(P2,M1);,P2,.,.,Receive(P1);,Send(P1,M2);,11,ResourceAllocationGraphs,Directedgraphthatdepictsastateofthesystemofresourcesandprocesses,12,ResourceAllocationGraphs,13,ConditionsforDeadlock,MutualexclusionOnlyoneprocessmayusearesourceatatimeHold-and-waitAprocessmayholdallocatedresourceswhileawaitingassignmentofothersNopreemptionNoresourcecanbeforciblyremovedfromaprocessholdingit,14,ConditionsforDeadlock,Circularwaitaclosedchainofprocessesexists,suchthateachprocessholdsatleastoneresourceneededbythenextprocessinthechainconsequenceofthefirstthreeconditions,15,16,ConditionsforDeadlock,MutualExclusionNopreemptionHoldandwaitCircularwaitEachofthesefourconditionsisnecessary,andfourconditionstakentogetherconstitutenecessaryandsufficientconditionsfordeadlock,17,DeadlockPrevention,DesignasysteminsuchawaythatthepossibilityofdeadlockisexcludedMutualExclusionImpracticable,operatingsystemsmustsupportthefeatureHoldandWaitRequireaprocessrequestallofitsrequiredresourcesatonetimeblocktheprocessuntilallrequestscanbegrantedsimultaneouslyprocessmaybeheldupforalongtimewaitingforallitsrequestsresourcesallocatedtoaprocessmayremainunusedforalongtime.Theseresourcescouldbeusedbyotherprocesses,18,DeadlockPrevention,NoPreemptionIfaprocessisdeniedafurtherrequest,itmustreleaseresourceandrequestagainIfaprocessrequestsaresourcethatiscurrentlyheldbyanotherprocess,OSmaypreemptthisprocesstorequireitreleasesitsresourcesPracticalonlywhenthestatecanbeeasilysavedandrestoredlater,suchasprocessorsCircularWaitDefinealinearorderingofresourcetypessuchthatoncearesourceisobtained,onlythoseresourceshigherinthelistcanbeobtainedMaydenyresourcesunnecessarily,19,DeadlockAvoidance,Adecisionismadedynamicallywhetherthecurrentresourceallocationrequestwill,ifgranted,potentiallyleadtoadeadlockRequiresknowledgeoffutureprocessrequest,20,TwoApproachestoDeadlockAvoidance,DonotstartaprocessifitsdemandsmightleadtodeadlockResourceallocationdenial:Donotgrantanincrementalresourcerequesttoaprocessifthisallocationmightleadtodeadlock,21,ResourceAllocationDenial,ReferredtoasBankersAlgorithmStateofthesystemisthecurrentallocationofresourcestoprocessSafestateisoneinwhichthereisatleastoneorderinwhichalltheprocessescanberuntocompletionwithoutresultinginadeadlockUnsafestateisastatethatisnotsafe,22,DeterminationofaSafeStateInitialState,Figure6.7DeterminationofasafeState,23,DeterminationofaSafeStateP2RunstoCompletion,Figure6.7DeterminationofasafeState,24,DeterminationofaSafeStateP1RunstoCompletion,Figure6.7DeterminationofasafeState,25,DeterminationofaSafeStateP3RunstoCompletion,Figure6.7DeterminationofasafeState,26,DeterminationofanUnsafeState,Figure6.8DeterminationofanUnsafeState,27,DeterminationofanUnsafeState,Figure6.8DeterminationofanUnsafeState,P1request:,28,DeadlockAvoidanceLogic-BankersAlgorithm,29,DeadlockAvoidanceLogic-BankersAlgorithm,30,DeadlockAvoidance,ProsandConsNorollbackandnopreemptionLessrestrictivethandeadlockpreventionMaximumresourcerequirementmustbestatedinadvanceProcessesunderconsiderationmustbeindependent;nosynchronizationrequirementsTheremustbeafixednumberofresourcestobeallocatedNoprocessmayexitwhileholdingresources,31,DeadlockDetection,DonotlimitresourcesaccessorrestrictprocessactionsRequestedresourcesaregrantedtoprocesseswheneverpossibleSomedeadlockdetectionalgorithmperformedperiodicallybyOStodetectthecircularwaitconditionOncedeadlockhasbeendetected,somerecoverystrategyistaken,32,DeadlockDetection,DetectionalgorithmdatastructureAllocationmatrix,Resourcevector,andAvailablevectorRequestmatrixQisdefinedsuchthatqijrepresentstheamountofresourcesoftypejrequestedbyprocessIInitially,allprocessesareunmarkedAdeadlockexistsiffthereareatleasttwounmarkedprocessesattheendofthealgorithm,33,DeadlockDetection,DetectionalgorithmMarkeachprocessthathasarowintheAllocationmatrixofallzerosInitializeatemporaryvectorWtoequaltheAvailablevectorFindanindexIsuchthatprocessIiscurrentlyunmarkedandtheithrowofQislessthanorequaltoW.IfnosuchrowisfoundterminatethealgorithmIfsucharowisfound,markprocessIandaddthecorrespondingrowoftheAllocationmatrixtoW.Returntostep3,34,DeadlockDetection,35,StrategiesonceDeadlockDetected,AbortalldeadlockedprocessesBackupeachdeadlockedprocesstosomepreviouslydefinedcheckpoint,andrestartallprocessOriginaldeadlockmayoccurSuccessivelyabortdeadlockedprocessesuntildeadlocknolongerexistsSuccessivelypreemptresourcesuntildeadlocknolongerexists,36,SelectionCriteriaDeadlockedProcesses,LeastamountofprocessortimeconsumedsofarLeastnumberoflinesofoutputproducedsofarMostestimatedtimeremainingLeasttotalresourcesallocatedsofarLowestpriority,37,StrengthsandWeaknessesoftheStrategies,38,DiningPhilosophersProblem,fork0,f
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 子宫腺肌病合并子宫内膜腺癌护理查房
- 慢性肾盂肾炎合并肾性高血压护理查房
- 阿拉尔市2025-2026学年七年级上学期语文月考模拟试卷
- 安徽省亳州市涡阳县2024-2025学年高一上学期第一次月考化学试卷及答案
- 2025 年小升初吕梁市初一新生分班考试英语试卷(带答案解析)-(外研版)
- 湖南省零陵区2025年5月中考思想品德历史综合模拟试题(无答案)
- 黑龙江2025年下半年城市规划师考试规划实务:人居环境科学和可持续发展考试题
- 【名师一号】2026届高考生物总复习体验双基考题:选修1 专题3 植物的组织培养和酶的研究与应用
- 社区科普知识课件
- 社区电梯安全知识培训课件
- 2025新高考英语Ⅱ卷真题听力原文
- 2026版步步高大一轮高考数学复习讲义第三章 进阶篇 不等式恒(能)成立问题 进阶2 参数半分离与主元变换含答案
- 2025年中国数位式照度计市场调查研究报告
- 净化板材料安装合同范本
- 中国NAD+ 增强剂行业市场占有率及投资前景预测分析报告
- 江苏省扬州市2023-2024学年高一下学期6月期末考试英语试题(含答案)
- 遗址公园建设项目可行性研究报告
- 2025如何审查合同文件中的要约与要约邀请的区别
- 权责清单培训实施纲要
- GB/T 2099.31-2025家用和类似用途插头插座第31部分:装有USB电源的插座的特殊要求
- 2025-2030酒吧行业市场发展分析及投资前景研究报告
评论
0/150
提交评论