lecture_6_Cooperating Threads

lecture_6_Cooperating Threads

ID:43515645

大小:374.42 KB

页数:25页

时间:2019-10-09

lecture_6_Cooperating Threads_第1页
lecture_6_Cooperating Threads_第2页
lecture_6_Cooperating Threads_第3页
lecture_6_Cooperating Threads_第4页
lecture_6_Cooperating Threads_第5页
资源描述:

《lecture_6_Cooperating Threads》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

1、CooperatingThreadsZhaoFangOperatingSystems-forthecollegestudentsGoalsforTodayWhyallowcooperatingthreads?WhatareAtomicOperations?BackgroundProcessescanexecuteconcurrentlyMaybeinterruptedatanytime,partiallycompletingexecutionConcurrentaccesstoshareddatamayresultindatainconsi

2、stencyMaintainingdataconsistencyrequiresmechanismstoensuretheorderlyexecutionofcooperatingprocessesIndependentThreadsNostatessharedwithotherthreadsDeterministiccomputationOutputdependsoninputReproducibleOutputdoesnotdependontheorderandtimingofotherthreadsSchedulingorderd

3、oesnotmattere.g.,compilersCooperatingThreadsSharedstatesNondeterministicNon-reproduciblee.g.,elevatorcontrollersExample:2threadssharingthesamedisplayThreadAThreadBcout<<“ABC”;cout<<“123”;Youmayget“A12BC3”So,WhyAllowCooperatingThreads?Sharedresourcese.g.,asingleprocesso

4、rSpeedupOccurswhenthreadsusedifferentresourcesatdifferenttimesModularityAnapplicationcanbedecomposedintothreadsHigh-levelExample:WebServerServermusthandlemanyrequestsNon-cooperatingversion:serverLoop(){con=AcceptCon();ProcessFork(ServiceWebPage(),con);}Whataresomedisadva

5、ntagesofthistechnique?ThreadedWebServerNow,useasingleprocessMultithreaded(cooperating)version:serverLoop(){connection=AcceptCon();ThreadFork(ServiceWebPage(),connection);}ThreadPoolsProblemwithpreviousversion:UnboundedThreadsWhenweb-sitebecomestoopopular–throughputsinksIns

6、tead,allocateabounded“pool”ofworkerthreads,representingthemaximumlevelofmultiprogrammingqueueMasterThreadThreadPoolContinue……worker(queue){while(TRUE){con=Dequeue(queue);if(con==null)sleepOn(queue);elseServiceWebPage(con);}master(){}allocThreads(worker,queue);while(TRUE){con=Ac

7、ceptCon();Enqueue(queue,con);wakeUp(queue);}}SomeConcurrentProgramsIfthreadsworkonseparatedata,schedulingdoesnotmatterThreadAThreadBx=1;y=2;SomeConcurrentProgramsIfthreadssharedata,thefinalvaluesarenotasobviousThreadAThreadBx=1;y=2;x=y+1;y=y*2;Whataretheindivisibleoperations

8、?AtomicOperationsAnatomicoperationalwaysrunstocomplet

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。