摘要:
一、自旋锁和互斥锁的实现 基于硬件原语的一些抽象(比如:中断禁用、原子操作指令),怎么实现?可以参考清华大学操作公开课(向勇、陈渝老师讲的),以下摘抄一部分实现代码来实现抽象。 Test And Set bool Test_And_Set(bool* flag) { bool rv = *flag; 阅读全文
摘要:
Python基础-包与模块 写在前面 如非特别说明,下文均基于Python3 摘要 1. 模块与导入 A module is a file containing Python definitions and statements Python模块就是包含定义以及语句的文件,文件名是模块的名字加上.p 阅读全文
摘要:
Python基础-_main_ 写在前面 如非特别说明,下文均基于Python3 一、__main__的官方解释 参考 _main_ -- Top-level script environment '_main_' is the name of the scope in which top-leve 阅读全文