摘要: 1,启动gdb start--只执行一步 n--step(单步)--可以进入到函数体内部 c--continue--直接停在断点的位置 2,查看代码 l--list l 10 (或者函数名) l filename:行号(或者函数名) 3,设置断点 设置当前文件断点: b--break b 10 (或 阅读全文
posted @ 2020-05-19 15:13 老年新手工程师 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 使用read(),write()函数,写一个简单的复制 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <pthread.h> #include <fcntl.h> int 阅读全文
posted @ 2020-05-19 10:24 老年新手工程师 阅读(505) 评论(0) 推荐(0) 编辑