操作系统名词解释
- 格式:doc
- 大小:279.00 KB
- 文档页数:21
操作系统名词解释整理
———————————————————————————————— 作者: ———————————————————————————————— 日期:
2
==================================名词解释====================================== Operating system: operating system is a program that manages the computer hardware. The operating system is the one program running at all times on the computer (usually called the kernel), with all else being systems programs and application programs. 操作系统:操作系统一个管理计算机硬件的程序,他一直运行着,管理着各种系统资源 Multiprogramming: Multiprogramming is one of the most important aspects of operating systems. Multiprogramming increases CPU utilization by organizing jobs (code and data) so that the CPU always has one to execute. 多程序设计:是操作系统中最重要的部分之一,通过组织工作提高CPU利用率,保证了CPU始终在运行中。 batch system: A batch system is one in which jobs are bundled together with the instructions necessary to allow them to be processed without intervention. 批处理系统:将许多工作和指令捆绑在一起运行,使得它们不必等待插入,以此提高系统效率。 time-sharing system: time sharing is a logical extension of by switching among them, but the switches occur so frequently that the users can interact with each program while it is running. 分时系统:是对多道程序设计的逻辑扩展。通过在多个作业间转换CPU,可以同时执行多个作业,但是这 种转换发生的如此频繁以至于用户在程序运行的同时可以与计算机交互。 Real-time system: A real-time system has well-defined, fixed time constraints. Processing must be done within the defined constraints, or the system will fail. 实时系统:实时系统具有明确定义的、不变的时间约束。处理过程必须在规定的时间内完成,否则系统就 失效了。 DMA: It is an essential feature of all modern computers, as it allows devices to transfer data without subjecting the CPU to a heavy overhead. 直接内存访问:一种不经过CPU而直接从内存存取数据的数据交换模式。 System call: System call provide the interface between a running program and the operating system. 系统调用:系统调用为运行中的程序和操作系统提供了一个接口。 Microkernel: the microkernel approach structures the operating system by removing all nonessential components from the kernel and implementing them as system and user-level programs. 微内核:微内核将所有不必要的组件从内核中去掉,并将它们作为系统和用户层程序来实现。 Process: It is program in execution。 进程:一个正在运行的程序 PCB: each process is represented in the operating system by a process control block (PCB). A PCB contains many pieces of information associated with a specific process. PCB:操作系统通过进程控制块(PCB)表示进程,一个PCB存储了进程的许多信息。 Job scheduler: the long-term scheduler, the job scheduler, selects processes which are spooled