电机资讯工程实习个人电脑系统(英文版)_第1页
电机资讯工程实习个人电脑系统(英文版)_第2页
电机资讯工程实习个人电脑系统(英文版)_第3页
电机资讯工程实习个人电脑系统(英文版)_第4页
电机资讯工程实习个人电脑系统(英文版)_第5页
已阅读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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论