linux

所属分类:android开发
开发工具:C++
文件大小:0KB
下载次数:0
上传日期:2023-06-24 12:20:23
上 传 者sh-1993
说明:  linux 编程环境学习笔记,含 linux 基本命令,linux 操作系统,linux 下 C++ 编程等
(Learning notes of Linux programming environment, including basic commands of Linux, Linux operating system, C++programming under Linux, etc)

文件列表:
.clang-format (1457, 2023-12-11)
3rdtools/ (0, 2023-12-11)
3rdtools/database/ (0, 2023-12-11)
3rdtools/database/SC_tables.md (1524, 2023-12-11)
3rdtools/database/assets/ (0, 2023-12-11)
3rdtools/database/assets/mysql_sample/ (0, 2023-12-11)
3rdtools/database/assets/mysql_sample/sample.png (9663, 2023-12-11)
3rdtools/database/create_mysql/ (0, 2023-12-11)
3rdtools/database/create_mysql/create.sql (2763, 2023-12-11)
3rdtools/database/create_mysql/create_SCtable.md (2201, 2023-12-11)
3rdtools/database/create_mysql/populate.sql (9719, 2023-12-11)
3rdtools/database/mysql.md (21557, 2023-12-11)
3rdtools/database/mysql_sample.md (3786, 2023-12-11)
3rdtools/database/tabels.md (11164, 2023-12-11)
3rdtools/flatbuffers/ (0, 2023-12-11)
3rdtools/flatbuffers/.clang-format (465, 2023-12-11)
3rdtools/flatbuffers/bin/ (0, 2023-12-11)
3rdtools/flatbuffers/bin/flatc (4167000, 2023-12-11)
3rdtools/flatbuffers/build.sh (45, 2023-12-11)
3rdtools/flatbuffers/include/ (0, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/ (0, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/base.h (12603, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/code_generators.h (6858, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/flatbuffers.h (95823, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/flatc.h (2992, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/flexbuffers.h (52807, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/grpc.h (11755, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/hash.h (3631, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/idl.h (36606, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/minireflect.h (13177, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/reflection.h (20577, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/reflection_generated.h (42713, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/registry.h (4489, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/stl_emulation.h (9336, 2023-12-11)
3rdtools/flatbuffers/include/flatbuffers/util.h (23753, 2023-12-11)
3rdtools/flatbuffers/qianxun.jpg (72336, 2023-12-11)
3rdtools/flatbuffers/test.cpp (7031, 2023-12-11)
3rdtools/flatbuffers/test.fbs (261, 2023-12-11)
... ...

# LINUX [![Stargazers repo roster for @jinbooooom/linux](https://reporoster.com/stars/jinbooooom/linux)](https://github.com/jinbooooom/linux/stargazers) [![Forkers repo roster for @jinbooooom/linux](https://reporoster.com/forks/jinbooooom/linux)](https://github.com/jinbooooom/linux/network/members) ### 本仓库用于记录: - `linux` 操作系统的基本知识、`linux` 下的调试手段如`GDB`调试、`linux` 命令行与 `shell` 编程、`cmake` 使用等等 - 网络与通信相关的笔记,如 tcp/ip 协议的笔记 、`InfiniBand`协议、`RDMA` 以及 `mpi` 的学习笔记 - ``linux C/C++``环境下开发时,常用的一些三方库的使用总结 - 自己写的一些 common 库,文件操作、字符串操作、线程安全的 log 等 ### 文件夹说明 ```shell ├── 3rdtools # 常用的一些三方库的使用总结 ├── awesome.md # 好用的学习网站、工具等 ├── cmake # cmake 学习 ├── communication # 网络通信相关,包含IB RDMA、TCP/IP协议,和 mpi 通信库的使用 ├── env.md # 记录开发中一些环境的配置 ├── gdb # 总结一些 gdb 调试技巧 ├── git # 总结的一些 git 命令 ├── programming # 系统编程的一些实例 ├── project # 一些完整的 demo ├── shell # shell 命令行和 shell 编程 ├── source # 一些学习资源,如 pdf 书籍和源码 ├── system # linux 操作系统的学习笔记 └── utils # 自己写的一些常用的工具,尽可能功能单一、简洁,方便使用 ``` -------------------------------------------------- ## 操作系统总结 - [操作系统](https://github.com/jinbooooom/linux/blob/master/system/system.md#操作系统) - [内存空间](https://github.com/jinbooooom/linux/blob/master/system/system.md#内存空间) - [进程空间地址划分](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程空间地址划分) - [父子进程共享文件描述符](https://github.com/jinbooooom/linux/blob/master/system/system.md#父子进程共享文件描述符) - [缓存与缓冲](https://github.com/jinbooooom/linux/blob/master/system/system.md#缓存与缓冲) - [堆与栈的区别](https://github.com/jinbooooom/linux/blob/master/system/system.md#堆与栈的区别) - [栈空间](https://github.com/jinbooooom/linux/blob/master/system/system.md#栈空间) - [进程与线程](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程与线程) - [进程有哪几种状态?](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程有哪几种状态) - [进程之间的转换](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程之间的转换) - [进程与线程的区别与联系](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程与线程的区别与联系) - [为什么有了多进程还要多线程?](https://github.com/jinbooooom/linux/blob/master/system/system.md#为什么有了多进程还要多线程) - [什么时候用进程?什么时候用线程?](https://github.com/jinbooooom/linux/blob/master/system/system.md#什么时候用进程什么时候用线程) - [协程](https://github.com/jinbooooom/linux/blob/master/system/system.md#协程) - [线程池的好处](https://github.com/jinbooooom/linux/blob/master/system/system.md#线程池的好处) - [进程与程序的区别](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程与程序的区别) - [线程同步的方式](https://github.com/jinbooooom/linux/blob/master/system/system.md#线程同步的方式) - [进程同步的方式](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程同步的方式) - [进程/线程之间的亲缘性](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程线程之间的亲缘性) - [进程线程协程上下文切换的性能比较](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程线程协程上下文切换的性能比较) - [进程间的通信方式](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程间的通信方式) - [什么是缓冲区溢出?有什么危害?其原因是什么?](https://github.com/jinbooooom/linux/blob/master/system/system.md#什么是缓冲区溢出有什么危害其原因是什么) - [作业(进程)调度算法](https://github.com/jinbooooom/linux/blob/master/system/system.md#作业进程调度算法) - [**进程与作业的联系和区别**](https://github.com/jinbooooom/linux/blob/master/system/system.md#进程与作业的联系和区别) - [调度算法](https://github.com/jinbooooom/linux/blob/master/system/system.md#调度算法) - [死锁](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁) - [死锁产生的条件?](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁产生的条件) - [怎么解决死锁](https://github.com/jinbooooom/linux/blob/master/system/system.md#怎么解决死锁) - [死锁预防](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁预防) - [死锁的避免](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁的避免) - [死锁的检测](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁的检测) - [死锁的解除](https://github.com/jinbooooom/linux/blob/master/system/system.md#死锁的解除) - [**什么是活锁?与死锁的区别?**](https://github.com/jinbooooom/linux/blob/master/system/system.md#什么是活锁与死锁的区别) - [虚拟内存](https://github.com/jinbooooom/linux/blob/master/system/system.md#虚拟内存) - [虚拟地址、逻辑地址、线性地址、物理地址的区别。](https://github.com/jinbooooom/linux/blob/master/system/system.md#虚拟地址逻辑地址线性地址物理地址的区别) - [分页和分段](https://github.com/jinbooooom/linux/blob/master/system/system.md#分页和分段) - [磁盘调度算法:](https://github.com/jinbooooom/linux/blob/master/system/system.md#磁盘调度算法) - [文件](https://github.com/jinbooooom/linux/blob/master/system/system.md#文件) - [read](https://github.com/jinbooooom/linux/blob/master/system/system.md#read) ## shell 编程总结 - [Shell 编程](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#Shell-编程) - [调试](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#调试) - [变量](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#变量) - [\# !/bin/bash](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#-binbash) - [赋值](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#赋值) - [unset](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#unset) - [只读变量](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#只读变量) - [转义与引用](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#转义与引用) - [流程控制](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#流程控制) - [相等判断符=、== 和 -eq的区别和使用场景](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#相等判断符-和--eq的区别和使用场景) - [if](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#if) - [test命令返回值与 if 判断的一些区别](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#test命令返回值与-if-判断的一些区别) - [test 命令](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#test-命令) - [文件测试](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#文件测试) - [字符串测试](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#字符串测试) - [整数比较](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#整数比较) - [逻辑测试运算符](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#逻辑测试运算符) - [case](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#case) - [循环](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#循环) - [for](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#for) - [for in](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#for-in) - [类C的for循环](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#类C的for循环) - [while](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#while) - [until](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#until) - [select](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#select) - [函数](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#函数) - [数组](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#数组) - [赋值](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#赋值) - [数组长度](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#数组长度) - [截取与合并](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#截取与合并) - [取消数组元素](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#取消数组元素) - [编程示例](https://github.com/jinbooooom/linux/blob/master/shell/shell.md#编程示例) ## shell 命令行总结 - [Linux Source命令及脚本的执行方式解析](https://github.com/jinbooooom/linux/blob/master/shell/command.md#Linux-Source命令及脚本的执行方式解析) - [简单命令](https://github.com/jinbooooom/linux/blob/master/shell/command.md#简单命令) - [date](https://github.com/jinbooooom/linux/blob/master/shell/command.md#date) - [cal](https://github.com/jinbooooom/linux/blob/master/shell/command.md#cal) - [df](https://github.com/jinbooooom/linux/blob/master/shell/command.md#df) - [history](https://github.com/jinbooooom/linux/blob/master/shell/command.md#history) - [free](https://github.com/jinbooooom/linux/blob/master/shell/command.md#free) - [pwd](https://github.com/jinbooooom/linux/blob/master/shell/command.md#pwd) - [watch -n 5 nvidia-smi](https://github.com/jinbooooom/linux/blob/master/shell/command.md#watch--n-5-nvidia-smi) - [du](https://github.com/jinbooooom/linux/blob/master/shell/command.md#du) - [cd](https://github.com/jinbooooom/linux/blob/master/shell/command.md#cd) - [ls & wc](https://github.com/jinbooooom/linux/blob/master/shell/command.md#ls--wc) - [tree](https://github.com/jinbooooom/linux/blob/master/shell/command.md#tree) - [mkdir](https://github.com/jinbooooom/linux/blob/master/shell/command.md#mkdir) - [rmdir](https://github.com/jinbooooom/linux/blob/master/shell/command.md#rmdir) - [rm](https://github.com/jinbooooom/linux/blob/master/shell/command.md#rm) - [mv](https://github.com/jinbooooom/linux/blob/master/shell/command.md#mv) - [cp](https://github.com/jinbooooom/linux/blob/master/shell/command.md#cp) - [chmod](https://github.com/jinbooooom/linux/blob/master/shell/command.md#chmod) - [type](https://github.com/jinbooooom/linux/blob/master/shell/command.md#type) - [which](https://github.com/jinbooooom/linux/blob/master/shell/command.md#which) - [alias & unalias](https://github.com/jinbooooom/linux/blob/master/shell/command.md#alias--unalias) - [ln](https://github.com/jinbooooom/linux/blob/master/shell/command.md#ln) - [硬链接](https://github.com/jinbooooom/linux/blob/master/shell/command.md#硬链接) - [软链接](https://github.com/jinbooooom/linux/blob/master/shell/command.md#软链接) - [重定向](https://github.com/jinbooooom/linux/blob/master/shell/command.md#重定向) - [将标准输出和标准错误重定向到文件](https://github.com/jinbooooom/linux/blob/master/shell/command.md#将标准输出和标准错误重定向到文件) - [处理不想要的输出](https://github.com/jinbooooom/linux/blob/master/shell/command.md#处理不想要的输出) - [tee](https://github.com/jinbooooom/linux/blob/master/shell/command.md#tee) - [管道](https://github.com/jinbooooom/linux/blob/master/shell/command.md#管道) - [打包](https://github.com/jinbooooom/linux/blob/master/shell/command.md#打包) - [tar](https://github.com/jinbooooom/linux/blob/master/shell/command.md#tar) - [zip](https://github.com/jinbooooom/linux/blob/master/shell/command.md#zip) - [文件](https://github.com/jinbooooom/linux/blob/master/shell/command.md#文件) - [touch](https://github.com/jinbooooom/linux/blob/master/shell/command.md#touch) - [stat](https://github.com/jinbooooom/linux/blob/master/shell/command.md#stat) - [xxd](https://github.com/jinbooooom/linux/blob/master/shell/command.md#xxd) - [nm](https://github.com/jinbooooom/linux/blob/master/shell/command.md#nm) - [文本处理](https://github.com/jinbooooom/linux/blob/master/shell/command.md#文本处理) - [less](https://github.com/jinbooooom/linux/blob/master/shell/command.md#less) - [cat](https://github.com/jinbooooom/linux/blob/master/shell/command.md#cat) - [head/tail](https://github.com/jinbooooom/linux/blob/master/shell/command.md#headtail) - [diff](https://github.com/jinbooooom/linux/blob/master/shell/command.md#diff) - [uniq](https://github.com/jinbooooom/linux/blob/master/shell/command.md#uniq) - [tr](https://github.com/jinbooooom/linux/blob/master/shell/command.md#tr) - [cut](https://github.com/jinbooooom/linux/blob/master/shell/command.md#cut) - [sed](https://github.com/jinbooooom/linux/blob/master/shell/command.md#sed) - [awk](https://github.com/jinbooooom/linux/blob/master/shell/command.md#awk) - [查找](https://github.com/jinbooooom/linux/blob/master/shell/command.md#查找) - [正则表达式](https://github.com/jinbooooom/linux/blob/master/shell/command.md#正则表达式) - [grep](https://github.com/jinbooooom/linux/blob/master/shell/command.md#grep) - [查找规则](https://github.com/jinbooooom/linux/blob/master/shell/command.md#查找规则) - [实例](https://github.com/jinbooooom/linux/blob/master/shell/command.md#实例) - [find](https://github.com/jinbooooom/linux/blob/master/shell/command.md#find) - [查找目录](https://github.com/jinbooooom/linux/blob/master/shell/command.md#查找目录) - [查找规则](https://github.com/jinbooooom/linux/blob/master/shell/command.md#查找规则) - [根据文件名(name)](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据文件名name) - [根据文件类型(type)](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据文件类型type) - [根据目录深度(depth)](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据目录深度depth) - [根据文件大小(size)](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据文件大小size) - [根据文件权限(perm)](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据文件权限perm) - [根据文件所属用户和组](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据文件所属用户和组) - [根据uid和gid](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据uid和gid) - [根据时间](https://github.com/jinbooooom/linux/blob/master/shell/command.md#根据时间) - [多条件连接](https://github.com/jinbooooom/linux/blob/master/shell/command.md#多条件连接) - [执行操作](https://github.com/jinbooooom/linux/blob/master/shell/command.md#执行操作) - [file 用于确定文件的种类](https://github.com/jinbooooom/linux/blob/master/shell/command.md#file-用于确定文件的种类) - [进程](https://github.com/jinbooooom/linux/blob/master/shell/command.md#进程) - [ps](https://github.com/jinbooooom/linux/blob/master/shell/command.md#ps) - [top](https://github.com/jinbooooom/linux/blob/master/shell/command.md#top) - [软件包管理](https://github.com/jinbooooom/linux/blob/master/shell/command.md#软件包管理) - [软件包常用命令](https://github.com/jinbooooom/linux/blob/master/shell/command.md#软件包常用命令) - [网络](https://github.com/jinbooooom/linux/blob/master/shell/command.md#网络) - [拷贝远程服务器文件到本地目录](https://github.com/jinbooooom/linux/blob/master/shell/command.md#拷贝远程服务器文件到本地目录) - [账号](https://github.com/jinbooooom/linux/blob/master/shell/command.md#账号) - [创建新账号并给予sudo权限](https://github.com/jinbooooom/linux/blob/master/shell/command.md#创建新账号并给予sudo权限) - [环境变量](https://github.com/jinbooooom/linux/blob/master/shell/command.md#环境变量) - [LD_LIBRARY_PATH](https://github.com/jinbooooom/linux/blob/master/shell/command.md#LD_LIBRARY_PATH) - [远程命令](https://github.com/jinbooooom/linux/blob/master/shell/command.md#远程命令) - [ssh 免密登录配置](https://github.com/jinbooooom/linux/blob/master/shell/command.md#ssh-免密登录配置) - [参考](https://github.com/jinbooooom/linux/blob/master/shell/command.md#参考) - [ssh 免密远程执行命令](https://github.com/jinbooooom/linux/blob/master/shell/command.md#ssh-免密远程执行命令) - [平时使用到的命令积累](https://github.com/jinbooooom/linux/blob/master/shell/command.md#平时使用到的命令积累) - [用文件作为swap分区](https://github.com/jinbooooom/linux/blob/master/shell/command.md#用文件作为swap分区) - [推荐/参考链接](https://github.com/jinbooooom/linux/blob/master/shell/command.md#推荐参考链接) ## gdb 总结 - [GDB 基本操作](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#GDB-基本操作) - [编译](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#编译) - [查看断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看断点) - [显示源代码](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#显示源代码) - [断点管理](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#断点管理) - [为文件设置断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#为文件设置断点) - [为函数设置断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#为函数设置断点) - [使用正则表达式设置断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#使用正则表达式设置断点) - [通过偏移量设置断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#通过偏移量设置断点) - [条件断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#条件断点) - [临时断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#临时断点) - [数据断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#数据断点) - [禁用/启用断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#禁用启用断点) - [启用断点一次](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#启用断点一次) - [启用断点但命中一次后就删除](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#启用断点但命中一次后就删除) - [启用断点并命中N次](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#启用断点并命中N次) - [忽略断点前N次命中](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#忽略断点前N次命中) - [删除断点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#删除断点) - [程序执行](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#程序执行) - [启用程序和继续执行程序](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#启用程序和继续执行程序) - [单步执行](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#单步执行) - [逐过程执行](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#逐过程执行) - [查看变量](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看变量) - [查看变量类型](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看变量类型) - [查看函数的参数、变量值以及修改变量值](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看函数的参数变量值以及修改变量值) - [查看结构体/类的值](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看结构体类的值) - [查看数组](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看数组) - [自动显示变量的值](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#自动显示变量的值) - [查看内存信息](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看内存信息) - [调用堆栈](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#调用堆栈) - [查看栈帧](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#查看栈帧) - [切换栈帧](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#切换栈帧) - [线程管理](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#线程管理) - [观察点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#观察点) - [捕获点](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#捕获点) - [跳转执行](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#跳转执行) - [使用shell命令](https://github.com/jinbooooom/linux/blob/master/gdb/gdb.md#使用shell命令) - [利用assert调试](https://github.com/jinbooooom/linux/blob/master/gdb ... ...

近期下载者

相关文件


收藏者