操作系统名词解释Word文档格式.docx

上传人:b****1 文档编号:13590176 上传时间:2022-10-11 格式:DOCX 页数:25 大小:83KB
下载 相关 举报
操作系统名词解释Word文档格式.docx_第1页
第1页 / 共25页
操作系统名词解释Word文档格式.docx_第2页
第2页 / 共25页
操作系统名词解释Word文档格式.docx_第3页
第3页 / 共25页
操作系统名词解释Word文档格式.docx_第4页
第4页 / 共25页
操作系统名词解释Word文档格式.docx_第5页
第5页 / 共25页
点击查看更多>>
下载资源
资源描述

操作系统名词解释Word文档格式.docx

《操作系统名词解释Word文档格式.docx》由会员分享,可在线阅读,更多相关《操作系统名词解释Word文档格式.docx(25页珍藏版)》请在冰豆网上搜索。

操作系统名词解释Word文档格式.docx

Multiprogramming:

Multiprogrammingisoneofthemostimportantaspectsofoperatingsystems.MultiprogrammingincreasesCPUutilizationbyorganizingjobs(codeanddata)sothattheCPUalwayshasonetoexecute.

多程序设计:

是操作系统中最重要的部分之一,通过组织工作提高CPU利用率,保证了CPU始终在运行中。

batchsystem:

Abatchsystemisoneinwhichjobsarebundledtogetherwiththeinstructionsnecessarytoallowthemtobeprocessedwithoutintervention.

批处理系统:

将许多工作和指令捆绑在一起运行,使得它们不必等待插入,以此提高系统效率。

time-sharingsystem:

timesharingisalogicalextensionofbyswitchingamongthem,buttheswitchesoccursofrequentlythattheuserscaninteractwitheachprogramwhileitisrunning.

分时系统:

是对多道程序设计的逻辑扩展。

通过在多个作业间转换CPU,可以同时执行多个作业,但是这种转换发生的如此频繁以至于用户在程序运行的同时可以与计算机交互。

Real-timesystem:

Areal-timesystemhaswell-defined,fixedtimeconstraints.Processingmustbedonewithinthedefinedconstraints,orthesystemwillfail.

实时系统:

实时系统具有明确定义的、不变的时间约束。

处理过程必须在规定的时间内完成,否则系统就失效了。

DMA:

Itisanessentialfeatureofallmoderncomputers,asitallowsdevicestotransferdatawithoutsubjectingtheCPUtoaheavyoverhead.

直接内存访问:

一种不经过CPU而直接从内存存取数据的数据交换模式。

Systemcall:

Systemcallprovidetheinterfacebetweenarunningprogramandtheoperatingsystem.

系统调用:

系统调用为运行中的程序和操作系统提供了一个接口。

Microkernel:

themicrokernelapproachstructurestheoperatingsystembyremovingallnonessentialcomponentsfromthekernelandimplementingthemassystemanduser-levelprograms.

微内核:

微内核将所有不必要的组件从内核中去掉,并将它们作为系统和用户层程序来实现。

Process:

Itisprograminexecution。

进程:

一个正在运行的程序

PCB:

eachprocessisrepresentedintheoperatingsystembyaprocesscontrolblock(PCB).APCBcontainsmanypiecesofinformationassociatedwithaspecificprocess.

操作系统通过进程控制块(PCB)表示进程,一个PCB存储了进程的许多信息。

Jobscheduler:

thelong-termscheduler,thejobscheduler,selectsprocesseswhicharespooledtoamass-storagedeviceandloadsthemintomemoryforexecution.

作业调度:

又称长程调度,从存储器中选择进程并将其载入内存。

CPUscheduler:

theshort-termscheduler,selectsfromamongtheprocessesthatarereadytoexecuteandallocatestheCPUtooneofthem.

CPU调度:

又称近程调度,从这些进程中选择就绪进程并为之分配CPU。

Thread:

AthreadisbasicunitofCPUutilization;

itcomprisesathreadID,aprogramcounter,aregisterset,andastack.

线程:

线程是一个基本的CPU执行单元;

它包含了一个线程ID,一个程序计数器,一个寄存器组合一个堆栈。

Throughput:

onemeasureofworkisthenumberofprocessesthatarecompletedpertimeunit.

吞吐量:

对工作量的一种测量单位,单位时间内运行完的进程数量。

nonpreemptive/preemptivescheduling:

Undernonpreemptivescheduling,oncetheCPUhasbeenallocatedtoaprocess,theprocesskeepstheCPUuntilitreleasestheCPUeitherbyterminatingorbyswitchingtothewaitstate.Aformofschedulingdesignedsothatjobscanbeinterruptedandtheirresourcestransferredtomoreurgentjobs.Aninterruptedjobcanbeeitherterminatedcompletelyorresumedtater.

非抢占式/抢占式调度:

在非抢占式调度下,一旦CPU分配给一个进程,那么该进程就会保持CPU直到终止或转换到等待状态。

抢占式调度:

允许进程被中断,使其资源用在更重要的地方。

Dispatcher:

thedispatcheristhemodulethatgivesthecontroloftheCPUtotheprocessselectedbyshort-termscheduler.

调度程序:

调度程序是一个模块,他将CPU控制提交给短程调度程序选择的进程。

Turnaroundtime:

theintervalfromthetimeofsubmissionofaprocesstothetimeofcompletionistheturnaroundtime.

周转时间:

从进程提交到进程完成的时间间隔。

Waitingtime:

waitingtimeisthesumoftheperiodsspentwaitinginthereadyqueue.

等待时间:

进程在就绪队列中耗费时间的总和。

Responsetime:

responsetimeisthetimefromthesubmissionofarequestuntilthefirstresponseisproduced.

响应时间:

从进程提交到产生首次响应的时间。

Criticalsection:

criticalsectionisasegmentofcodeinwhichtheprocessmaybechangingcommonvariables,updatingatable,writingafile,andsoon.

临界区:

每个进程有一个代码段,被称之为临界区,进程在临界区内可能会修改公有变量、更新一个表、写一个文件等。

Semaphore:

AsemaphoreSisintegervariablethat,apartfrominitialization,isaccessedonlythroughtwostandardatomicoperations:

wait()andsignal().

信号量:

信号量s是一个整形数,除初始化之外,对它的访问只能通过两个标准原子操作:

wait和signal。

Atomicoperation:

Atomicoperationmeansanoperationthatcompletesinitsentiretywithoutinterruption.

原子操作:

原子操作指不会被中断,一次运行完的操作。

Deadlock:

asetofblockedprocesseseachholdingaresourceandwaitingtoacquirearesourceheldbyanotherprocessintheset.

死锁:

一些进程各自拥有一个资源,同时等待着另一个已被占有的资源,造成互相锁定的情况。

Starvation:

starvationisasituationinwhichprocesseswaitindefinitelywithinthesemaphore.

饥饿:

饥饿是指一个进程在信号量中无休止的等待。

Deadlockprevention:

Restrainthewaysrequestcanbemade,attackingfourconditions.

死锁预防:

只要确保造成死锁的四个条件中任意一个不成立,就可以预防死锁。

Deadlockavoidance:

Adecisionismadedynamicallywh

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 工程科技 > 纺织轻工业

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1