摘要:
任何一个用过或学过C的人对malloc都不会陌生。大家都知道malloc可以分配一段连续的内存空间,并且在不再使用时可以通过free释放掉。但是,许多程序员对malloc背后的事情并不熟悉,许多人甚至把malloc当做操作系统所提供的系统调用或C的关键字。实际上,malloc只是C的标准库中提供的一 阅读全文
posted @ 2019-01-19 15:58
HelloSUN
阅读(432)
评论(0)
推荐(0)
摘要:
Memory management is the heart of operating systems; it is crucial for both programming and system administration. In the next few posts I'll cover me 阅读全文
posted @ 2019-01-19 15:54
HelloSUN
阅读(379)
评论(0)
推荐(0)