
Linux
文章平均质量分 63
laodaliubei
这个作者很懒,什么都没留下…
展开
-
Linux编程
Contentsfunctions库函数&系统调用functions库函数&系统调用函数库提供的函数通常是不需要操作系统的服务,函数是在用户空间内执行的,除非函数涉及到I/O操作等,一般是不会切到核心态的。系统调用是要求操作系统为用户提供进程,提供某种服务,通常是涉及系统的硬件资源和一些敏感的软件资源等。系统 调用的执行效率大多要比函数高,尤其是处理输入输出的函数. 当...原创 2018-11-25 12:09:28 · 143 阅读 · 0 评论 -
经常用到的Linux命令
ContentsPrefacemanRelated to filesPrefaceThe manual of OS is the most detailed . However, it’s complicated.As a result , if you can find what you need to solve your problem, enough!If you wanna kn...原创 2018-11-25 12:20:04 · 163 阅读 · 0 评论 -
GCC&Makefile&GDB
Contentspathheader 头文件lib 库文件pathheader 头文件include 使用 “” or <> : precedence is different (mine? Or system’s.)gcc 在编译时如何去寻找所需要的头文件 :使用双引号包含的头文件会首先搜索当前工作目录然后与 一致, header file的搜寻会从 -I 开始然后找原创 2018-12-08 12:27:20 · 495 阅读 · 1 评论 -
常用Linux 库函数
Contents<unistd.h>In the C and C++ programming languages, unistd.h is the name of the header file that provides access to the POSIX operating system API.原创 2018-12-06 18:39:37 · 256 阅读 · 0 评论