操作系统概念术语

发布于 2025-01-04 10:32:05 字数 612 浏览 1 评论 0原文

我正在为我的班级做一些样本考试的填空,我希望你能仔细检查我的术语。

  1. 操作系统使用的各种调度队列将由进程列表组成。
  2. 中断处理是一种定期检查是否满足条件(例如完成某些请求的 I/O 操作)的技术。
  3. 当 CPU 处于内核模式时,正在运行的程序可以访问一组受限的 CPU 功能。
  4. CPU 调度程序的工作是在就绪队列中选择一个进程并更改其状态。
  5. CPU 通常支持中断向量,因此当硬件中发生某些感兴趣的事件时,操作系统可以做出适当的响应。
  6. 使用陷阱,设备控制器可以利用总线上的空闲时间来读取或写入主存储器。
  7. 上下文切换期间,从CPU复制并保存一个进程的状态,并恢复另一进程的状态。
  8. 操作系统由内核和一组应用程序组成,这些程序作为用户进程运行,为用户提供操作系统服务或在后台工作以保持计算机平稳运行。

我们的章节中有很多术语,我不太确定我是否使用了正确的术语。

I'm doing some fill in the blanks from a sample exam for my class and I was hoping you could double check my terminology.

  1. The various scheduling queues used by the operating system would consist of lists of processes.
  2. Interrupt handling is the technique of periodically checking to see if a condition (such as completion of some requested I/O operation) has been met.
  3. When the CPU is in kernel mode, a running program has access to a restricted set of CPU functionality.
  4. The job of the CPU scheduler is to select a process on the ready queue and change its state.
  5. The CPU normally supports a vector of interrupts so the OS can respond appropriately when some event of interest occurs in the hardware.
  6. Using traps, a device controller can use idle time on the bus to read from or write to main memory.
  7. During a context switch, the state of one process is copied from the CPU and saved, and the state of a different process is restored.
  8. An operating system consists of a kernel and a collection of application programs that run as user processes and either provide OS services to the user or work in the background to keep the computer running smooth.

There are so many terms from our chapters, I am not quite sure if I am using the correct ones.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘和柠 2025-01-11 10:32:05

我的想法:
1. 进程和/或线程。工作和任务也并非闻所未闻。可能还有其他事情。例如,在 MS Windows 中,也有可以排队的延迟过程调用 (DPC)。
2. 这必须是轮询
4. 为什么要使用CPU调度器?为什么不只是调度程序?
6. 我不确定硬件/总线上下文中的陷阱

My thoughts:
1. Processes and/or threads. Jobs and tasks aren't unheard of either. There can be other things. E.g. in MS Windows there are also Deferred Procedure Calls (DPCs) that can be queued.
2. This must be polling.
4. Why CPU scheduler? Why not just scheduler?
6. I'm not sure about traps in the hardware/bus context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文