嘎嘎好用。 debugging_with_GDB中文版.pdf
2022-08-05 20:00:55 5.84MB gcc/gdb编译调试 gdb
1
1 开发 2 测试 3 调试 4 常用命令
2022-06-22 09:00:40 339.73MB 开发工具 测试工具 调试GDB 常用命令
(4)多线程调试 A. 基本命令 (gdb) info threads:查看GDB当前调试的程序的各个线程的相关信息 (gdb) thread threadno:切换当前线程到由threadno指定的线程 (gdb) thread apply [threadno] [all] args:对指定(或所有)的线程执行由args指定的命令 B. 相关属性 (gdb) set scheduler-locking mode: 设置程序运行过程中锁scheduler的模式: on: 除当前线程外的其它线程都被锁住,不可运行 off: 缺省情况,每个线程都会正常抢占cpu时间片 step: 在执行单步命令期间,其它线程不能运行 (gdb) show scheduler-locking:查看 当前的scheduler-locking模式设置 * 手把手教你玩转GDB--ZeshengWu *
2021-09-29 15:44:21 1.37MB gdb
1
gdb 9.2版本,于2020年7月26日编译完成。mingw编译器不提供gdb下载,可用于配置vscode的gdb调试。下载后,可直接放在gcc.exe同级目录下。
2021-05-22 12:42:49 148.66MB C编译器 gdb调试 gdb9.2 windows操作系统
1