活到老,学到老!
发布时间:2019-04-23 13:36:30
1.查看CPU和内存信息 cat /proc/cpuinfo cat /proc/meminfo2.查看当前系统是32位 or 64位 uname --m3.查看ubuntu版本号 lsb_release -a4.。。。......【阅读全文】
发布时间:2019-04-12 10:04:29
发现做了这么多年的嵌入式开发,还有朋友搞不清楚stack & heap的区别,在阅读《Operating Systems_Three Easy Piece》时,里面的一段解释觉得非常好!C programs use the stack for local variables, function parameters, and return addresses; the OS allocates this memory and gives it to the process. The OS will .........【阅读全文】