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

《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.kler.cn/a/571411.html

相关文章:

  • 蓝桥杯 2020 国赛 阶乘约数
  • 自学微信小程序的第十天
  • [liorf_localization_imuPreintegration-2] process has died
  • python全栈-Linux基础
  • 【Linux】进程信号——信号保存和信号捕捉
  • 【大模型】什么是蒸馏版大模型
  • 【零基础到精通Java合集】第二十三集:G1收集器深度解析
  • 鸿蒙5.0实战案例:基于ArkUI的透明页面效果
  • BambuStudio学习笔记:GCode 类
  • 15款单色颗粒渐变扭曲抽象艺术背景图AI/PSD格式设计素材 Abstract Grainy Gradient Background
  • CubeMX创建STM32F407工程
  • DeepSeek未来发展趋势:开创智能时代的新风口
  • Ubuntu20.04双系统安装及软件安装(十三):录屏软件kazam
  • wpa_supplicant源码剖析-main.c解析
  • 【微知】如何通过mlxlink查看Mellanox网卡和光模块相关的信息?( mlxlink -d 01:00.0 -m)
  • 拥抱健康养生,开启活力生活
  • 智慧园区大数据云平台建设总体方案,平台方案架构-智慧园区大数据平台(320页原件Word)
  • Windows 11【1001问】查看Windows 11登录用户的18种方法
  • 无人机的飞行控制器技术详解
  • C++ OpenGL 帧缓冲(Framebuffer)理论与实现