




已阅读5页,还剩34页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1,EE110300電機資訊工程實習Lecture3個人電腦系統II-OperatingSystems,2,Whatisanoperatingsystem?Definition,Anoperatingsystemisthe“permanent”softwarethatcontrols/abstractshardwareUserapplicationscanthusbesimpleranddevice-independent,physicalmachineinterface,UserApplications,OperatingSystem,Architecture,virtualmachineinterface,3,Whatisanoperatingsystem?Definition(cont),ManagesresourcesandprocessestosupportdifferentuserapplicationsProvidesApplicationsProgrammingInterface(API)foruserapplications,UserApplication,OperatingSystem,Architecture,UserApplication,4,Modernoperatingsystems,x86platformLinuxWindowsMacplatformMacOSSunSolaris,BorlandClibrary:Intprintf()/callSysOutputString,/providedbyNT/systemlibrary,to/printonthescreenSysOutputString();,NTlibrary:VoidSysOutputString()/callNtOutputString,thatinturnwillcall/videocarddrivertooutputstringsto/thescreenNtOutputString();,12,Systemservicecall(disk),CPrograms:main()/callCreateFile/bytheClibrary,to/createafileondiskCreateFile(“a.txt”),BorlandClibrary:IntCreateFile()/callNtCreateFile,/providedbyNTto/createafileNtCreateFile();,NTlibrary:VoidNtCreateFile()/callNtInternalCreateFile,thatinturnwill/callthefilesystemdriverandthedisk/drivertocreateafileonadiskNtInternalCreateFile();,13,Systemservicecalls(network),CPrograms:main()so=createsocket();send(so,“text”);close(so);,BorlandClibrary:intcreatesocket()NtCreateSocket();intsend()NtSocketSend();,NTlibrary:VoidNtCreateSocket()NtAfdCreateSocket();,14,15,Virtualcomputerconcept,C+compiler,FORTRANcompiler,Ccompiler,Javacompiler,Assembler,OperatingSystemCommandinterpreter,LISPinterpreter,Operatingsystem,Macroinstructioninterpreter,Baremachine,VirtualCComputer,VirtualC+Computer,16,Importanceofoperatingsystem,SystemAPIaretheonlyinterfacebetweenuserapplicationsandhardwareAPIaredesignedforgeneral-purpose,notperformancedriven(workapplications)OScodecannotallowanybugAnybreak(e.g.invalidaccess)causesrebootTheownerofOStechnologycontrolsthesoftwareindustry,17,WhatisEmbeddedSystem?,是電腦軟體與硬體的綜合體,亦可涵蓋機械或其他附屬裝置;整個綜合體設計的目的,在於滿足某種特殊功能.例如:PDA,遊樂器,衛星導航系統,流程管理器等.,18,Embeddedsystemarchitecture,3-layereddevicePalm,PocketPC,UserApplications,EmbeddedOS,Hardware,2-layereddeviceXBox,Hardware,Application,19,General-purpose&embeddedOS,20,Operatingsystemconcepts,21,Process&Thread,Howdodifferentapplicationsrunonthesamemachineatthesametimewithoutinterferingeachother?ProtectionbetweenprocessesProtectionbetweenaprocessandtheOSProcess:anexecutionofaprogram,consistingofavirtualaddressspace,oneormorethreads,andsomeOSstates.,22,Virtualmemory(addressspace),virtualaddressspace(4GB),page0,page1,page2,page220,physicalmemory(16MB),pp0,pp1,pp2,ppN,pagingfile,pp212,x,23,Virtualmemory(addressspace),virtualaddressspace(4GB),page0,page1,page2,page220,physicalmemory(16MB),pp0,pp1,pp2,ppN,pagingfile,pp212,24,Memorymanager,physicalmemory,pp0,pp1,pp2,ppN,pagingfile,pp212,processVA,processVA,PT,PT,25,Memorymanager,physicalmemory,pp0,pp1,pp2,ppN,pagingfile,pp212,processVA,processVA,PT,PT,26,Memorymanager(w/constraint),physicalmemory,pp0,pp1,pp2,ppN,pagingfile,pp212,processVA,processVA,PT,PT,x,memorymanager,27,Protectiondualmodeoperation,Canapplicationmodifyitsownpagetable?Ifitcould,couldgetaccesstoallphysicalmemory.DualModeKernel/protectedmodel:norestriction,cantouchanyphysicalmemorypageUsermode:whereyouprogramruns,canonlytouchpartofthevirtualaddressspaceApplicationscanenterthekernelmodethroughsystemscalls(traps),28,Modechange:systemcalltrap,1.Systemcalltrapstothekernel(kernelmode)2.Kerneldeterminesserviceroutinerequired3.Kernelservicesthecall.4.Controlisreturnedtouserprogram(usermode),29,Thread,Aprocessstartswithonethread(mainthread),andcaninitializemorethreadsbyCreateThread()callsAthreadrepresentsanexecutionstreamofinstructionsanditsCPUregistercontextAthreadistheunitusedintheschedulerKillaprocesskillitsallthreads,30,Scheduler,AcomponentinOSthatdecideswhichthreadinthethreadpoolgetstheCPUPriority-basedschedulerContextswitch,newthread,terminatingthreads,signalevents,31,Synchronization,AllthreadsinthesameprocessshareallglobaldataSynchronizationamongthesethreadsisnecessarytomaintaindataintegrityResourcelockiscommonlyusedtoguaranteethreadmutualexclusiveabuseofsuchlocksdecreasesscalabilityignoranceofsuchlocksdecreasesstabilityDeadlockissues,32,FileSystems,AharddiskisjustarawmediastorageAharddiskdevicedriverallowsOStocommunicatewiththehardwareBut,itistheresponsibilityoftheOStoorganizedisksectors/tracksforstoringfilessuchcomponentiscalledthefilesystemE.g.AharddiskthatstoresNTFSinformationcannotbereadwiththeFAT32driverexample:paperwithMosescode,33,OperatingSystemsandSystemSoftware,Example:webserversoftware,34,User-modewebserverarchitecture,UserMode,KernelMode,I/Omodule,35,User-modewebservercommons,User-modeapplicationarchitecturee.g.MicrosoftInternetInformationServer(IIS),NetscapeEnterpriseServer,ApacheHTTPServer,etc.DependentongenerallysystemAPIStand-alonewebcontentcachelimitedbyvirtualaddressspaceTime-to-livecachereplacementalgorithmMemory-lessdynamiccodeexecution,36,SWCwebserverarchitecture,UserMode,KernelMode,networkcard+,SystemCache,miss,37,SPECWEB99Performance,*estimatedscalingdata,38,Kernelvs.user-b
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 城市建设管理职业岗位试题及答案
- 江油安全员证考试题库及答案解析
- 建筑安全生产管理c证考试题库及答案解析
- 汽机专业安全题库及答案解析
- 仓储管理员应急处置考核试卷及答案
- 医疗器械经营监督管理办法2025年培训考试试卷和答案
- 2025年病理学考试题及答案
- 2025年临床药学培训试题及答案
- 2025年护士执业资格模拟题带答案
- 110kv电力接入工程勘察设计服务合同5篇
- 间歇充气加压用于静脉血栓栓塞症预防的中国专家共识解读
- 2025年宜宾市中考语文试题卷(含答案详解)
- 2025-2030中国止痛药品市场供需形势及未来前景动态研究报告
- 儿童化妆教学课件
- 五粮液笔试考试题及答案
- 配送中心合伙协议书
- 2025中美关税战时政述评-初中《道法》25年时政述评课件
- 中国成人患者围手术期液体治疗临床实践指南(2025版)解读 2
- 高压基础知识培训课件
- 肠外营养安全输注专家共识课件
- 2025年保健品总代理合同样本
评论
0/150
提交评论