当前位置: 首页 > news >正文

《Operating System Concepts》阅读笔记:p180-p187

《Operating System Concepts》学习第 20 天,p180-p187 总结,总计 8 页。

一、技术总结

1.forke-join

A strategy for thread creation in which the main parent thread creates (forks) one or more child threads and then waits for the children to terminate and join with it.
在这里插入图片描述

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

1.fork

(1)fork: furca(“two-pronged fork(两刺叉), pitchfork(干草叉)”)

c. a tool with prongs(尖齿),即我们常说的“(吃饭用的,或者干活用的)叉子”。引申出“a point of divergence(such as road) evolved from its physical shape”之意。

(2)示例

Fork-in is a strategy for thread creation in which the main parent thread creates (forks) one or more child threads and then waits for the children to terminate and join with it(《Operating System Concepts》第 177 页)。

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

三、其它

以前一直不理解 fork 想表达的意思,总是觉得为什么不直接用 create 呢?直到看了这本书,查了 fork 的意思——叉子,结合图示,才真正的理解了 fork 的含义(branch off from the main thread,暗含“从主干分叉出来”之意)。

四、参考资料

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.dtcms.com/a/50107.html

相关文章:

  • 【C++】当一个类A中没有声明任何成员变量和成员函数,sizeof(A)是多少?
  • shell文本处理
  • 深度学习的隐身术:详解 PyTorch nn.Dropout
  • Scala:for 循环遍历形式基本简单介绍(基础,高级,for-yield,特殊场景)
  • 如何将本机的vm中linux拷贝给别人使用
  • 快速高效使用——阿里通义万相2.1的文生图、文生视频功能
  • 敏捷开发学习笔记
  • 汽车智能钥匙低频PKE天线
  • 【商城实战(2)】商城架构设计:从底层逻辑到技术实现
  • 局部变量占用空间
  • deepseek免费网站大全
  • css学习第四章之常用属性(第一节)
  • github进不去,一直显示错误
  • vue下载文件 (blob文件流) 及 下载失败报错信息处理
  • Jetson Orin Nano Super Devkit开发板测评:边缘AI的性价比王者
  • 【Linux】进程信号——信号保存和信号捕捉
  • 直接用http请求调用别人的webservice服务 并且包含账号密码 解决使用Apache CXF 生产代码无法使用的问题 不使用
  • 【Java】IO流
  • 1358. 包含所有三种字符的子字符串数目
  • 复试准备日常
  • 什么是SYN洪范攻击?
  • 抖音DP代运营服务——品融电商赋能品牌增长
  • Python 调试pdb和-i模式
  • NodePort+LoadBalancer+Ingress+MetalLB+HostNetwork+Istio Gateway
  • 【神经网络】python实现神经网络(一)——数据集获取
  • 通俗的方式解释“零钱兑换”问题
  • 利用Python爬取中国气象局天气预报数据
  • ctf网络安全赛题
  • tsconfig.json 配置清单
  • C语言运算符优先级,简单样例理解