Fork me on GitHub
摘要: An introduction to kernel synchronization 当一个thread正在对数据进行读写操作时,另一个thread对同一个数据进行读写操作,这就会产生冲突竞争,比如重写数据单元等。为了解决这样的问题,必须考虑synchronization的问题。这样的竞争问题,并不总 阅读全文
posted @ 2020-08-29 16:12 LT_Rock 阅读(324) 评论(0) 推荐(0)
摘要: bottom halves and deferring work 重要的需要立即处理的工作在上半页(interrupt handler)进行处理,不是太紧急的部分就在下半页进行处理。The job of bottom halves is to perform any interrupt-relate 阅读全文
posted @ 2020-08-29 11:32 LT_Rock 阅读(438) 评论(0) 推荐(0)