《Operating System Concepts》阅读笔记:p62-p75

server/2025/2/23 1:25:34/

《Operating System Concepts》学习第 10 天,p62-p75 总结,总计 14 页。

一、技术总结

1.  system call

(1)  定义

The primary interface between processes and the operating system, providing a means to invoke services made available by the operating system.

(2)  类型

System calls can be grouped roughly into six major categories: process control, file management, device management, information maintenance, communications, and protection。

2.  interprocess communication

(1)  分类

There are two common models of interprocess communication: the message-

passing model and the shared-memory model.

二、英语总结(生词:3)

1.rewind

(1)rewind: re-(“again”) + wind(“to turn, to twist”)
vi/vt. go back to the beginning, move back to the start.
示例:We may also read(), write(), or reposition() (rewind or skip to the end of the file, for example)(《Operating System Concepts》第 71 页)。

2.exclusive

(1)exclusive:ex-(“out, away”) + claudere(“to close, to shout out”)
adj. exclusive refers to sth is limited, restricted or not shared with others–it implies that others are shut out or excluded。常见的用法有:exclusive use(专用), exclusiver access(独占式访问), exclusive right(专有权)。
示例:A system with multiple users may require us to first request() a device, to ensure exclusive use of it(《Operating System Concepts》第 72 页)。
(2)exclusive vs privileged
exclusive 强调 restriction or sole access(not shared or available to others), privileged 强调 special advantage or benefit(having something valuable or favorable)。

3.eligible

(1)eligible: e-(“out, from”) + legere(“to choose”)
adj. able to choosen(有资格的)。
示例:In this section, we describe the steps in this procedure, from compiling a program to placing it in memory, where it becomes eligible to run on an available CPU core(《Operating System Concepts》第 75 页)。

关于英语的注解同步更新汇总到 https://github.com/codists/English-In-CS-Books 仓库。

三、其它

看了还不能实际地去运用是最让人痛苦的,更痛苦的是这两天有一个面试因为算法挂了,看来算法是绕不过去的门槛,今年打算再开一个算法的坑。

四、参考资料

1. 编程

(1) Abraham Silberschatz,Peter Baer Galvin,Greg Gagne《Operating System Concepts》:https://book.douban.com/subject/30272539/

2. 英语

(1) Etymology Dictionary:https://www.etymonline.com

(2) Cambridge Dictionary:https://dictionary.cambridge.org

欢迎搜索及关注:编程人(a_codists)


http://www.ppmy.cn/server/169996.html

相关文章

51单片机-按键

1、独立按键 1.1、按键介绍 轻触开关是一种电子开关,使用时,轻轻按开关按钮就可使开关接通,当松开手时,开关断开。 1.2、独立按键原理 按键在闭合和断开时,触点会存在抖动现象。P2\P3\P1都是准双向IO口,…

✨ 索引有哪些缺点以及具体有哪些索引类型

索引的定义与原理 索引是数据库中用于提高数据检索效率的数据结构。它就像是书籍的目录,通过目录可以快速定位到所需内容的页码,而在数据库中,索引可以帮助数据库系统快速找到符合查询条件的数据行,而不必对整个表进行扫描。 其…

可编辑112页PPT | DeepSeek行业应用实践报告

荐言分享:DeepSeek,作为一种前沿的人工智能技术,自其发布以来,已在多个行业领域展现出广泛的应用潜力和实践价值。本报告旨在全面介绍DeepSeek的技术特点、行业应用实践以及其对未来行业发展的深远影响。 DeepSeek-R1,…

【python】网页批量转PDF

安装wkhtmltopdf 网站:wkhtmltopdf wkhtmltopdf http://www.baidu.com/ D:website1.pdf 安装pdfkit库 pip install pdfkit 批量转换代码 import os import pdfkit path_wkthmltopdf rE:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe config pdfkit.configu…

wps中的js开发

严格区分大小写 /*** learn_js Macro*/ function test() {Range(D7).Value2Selection.Value2; // Selection.formula "100" }function Workbook_SheetSelectionChange(Sh, Target) {if(Sh.Name Sheet1) {test();}}function test2() {// 把I4单元格及其周边有数的单…

跨中心模型自适应牙齿分割|文献速递-医学影像人工智能进展

Title 题目 Cross-center Model Adaptive Tooth segmentation 跨中心模型自适应牙齿分割 01 文献速递介绍 三维(3D)口腔内扫描牙齿模型的自动、准确分割是计算机辅助正畸治疗不可或缺的先决条件。具体而言,口腔内扫描(IOS&am…

JUC并发—9.并发安全集合三

大纲 1.并发安全的数组列表CopyOnWriteArrayList 2.并发安全的链表队列ConcurrentLinkedQueue 3.并发编程中的阻塞队列概述 4.JUC的各种阻塞队列介绍 5.LinkedBlockingQueue的具体实现原理 6.基于两个队列实现的集群同步机制 1.并发安全的数组列表CopyOnWriteArrayList …

HttpServlet详解

HttpServlet详解 一,什么是HttpServlet? 1.1 概念 HttpServlet是Java Servlet API 的一部分,它是一个抽象类,旨在简化基于HTTP协议的web应用程序开发,通过扩展HttpServlet类,开发者可以创建处理HTTP请求…