- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
想调试一个小程序,但在printf()后无法继续调试,求助!这是代码:
#include <stdio.h>
#include <stdlib.h>
struct dll {
struct dll* prev;
int data;
struct dll* next;
};
struct dll* head;
int main() {
struct dll *p1, *p2, *p3, *p4, *p5, *temp;
struct dll * add=NULL;
p1 = (struct dll *)malloc(sizeof(struct dll));
p2 = (struct dll *)malloc(sizeof(struct dll));
p3 = (struct dll *)malloc(sizeof(struct dll));
p4 = (struct dll *)malloc(sizeof(struct dll));
p5 = (struct dll *)malloc(sizeof(struct dll));
p1->prev = NULL;
p1->data = 1;
p1->next = p2;
p2->prev = p1;
p2->data = 2;
p2->next = p3;
p3->prev = p2;
p3->data = 3;
p3->next = p4;
p4->prev = p3;
p4->data = 4;
p4->next = p5;
p5->prev = p4;
p5->data = 5;
p5->next = NULL;
head=p1;
int count=0, pos=0,i=0;
printf("add of p1::%p add of p2::%p add of p3::%p add of p4::%p add of p5::%p\n", p1, p2, p3, p4, p5);
for ( temp = p1; temp != NULL; temp = temp->next ){
count++;
}
if(count%2==0)
puts("even nodes so no midlle node");
else if(count%2!=0)
{
pos=count/2;
printf("pos::%d\n",pos+1);
for ( i=0; i<=pos; i++)
{
for ( temp = p1;temp != NULL;temp = temp->next )
{
if(i==pos)
printf("middle node is %p\n",temp);
}
}
}
return 0;
}
调试输出:
(gdb) b 47
Breakpoint 1 at 0x8048643: file sony.c, line 47.
(gdb) b 57
Breakpoint 2 at 0x8048696: file sony.c, line 57.
(gdb) run
Starting program: /home/jeevan/Documents/jvt/ds/sony
add of p1::0x804b008 add of p2::0x804b018 add of p3::0x804b028 add of p4::0x804b038 add of p5::0x804b048
pos::3
Breakpoint 1, main () at sony.c:47
47 for ( i=0; i<=pos; i++)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
47 for ( i=0; i<=pos; i++)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
47 for ( i=0; i<=pos; i++)
(gdb) s
50 for ( temp = p1;temp != NULL;temp = temp->next )
(gdb) s
53 if(i==pos)
(gdb) s
54 printf("middle node is %p\n",temp);
(gdb) s
__printf (format=0x804879d "middle node is %p\n") at printf.c:28
28 printf.c: No such file or directory.
(gdb) s
__x86.get_pc_thunk.bx () at ../sysdeps/i386/i686/multiarch/strcat.S:55
55 ../sysdeps/i386/i686/multiarch/strcat.S: No such file or directory.
(gdb) s
__printf (format=0x804879d "middle node is %p\n") at printf.c:32
32 printf.c: No such file or directory.
(gdb) s
33 in printf.c
(gdb) s
_IO_vfprintf_internal (s=0xb7fb3ac0 <_IO_2_1_stdout_>, format=format@entry=0x804879d "middle node is %p\n",
ap=ap@entry=0xbfffef44 "\b\260\004\b\030\260\004\b(\260\004\b8\260\004\bH\260\004\b\001") at vfprintf.c:235
235 vfprintf.c: No such file or directory.
(gdb) s
270 in vfprintf.c
在 printf() 之后我陷入了一个循环,我不明白它在说什么以及我应该等待多长时间才能转到下一条语句?
最佳答案
我没有调试器也能正常运行。使用“下一步”而不是“步骤”很重要:(请注意,为了便于阅读,我已经重新格式化了您的代码。)
[wally@lenovoR61 ~]$ gdb t
GNU gdb (GDB) Fedora (7.3.50.20110722-16.fc16)
Copyright (C) 2011 Free Software Foundation, Inc.
...
Reading symbols from /home/wally/t...done.
(gdb) start
Temporary breakpoint 1 at 0x804842d: file t.c, line 14.
Starting program: /home/wally/t
Temporary breakpoint 1, main () at t.c:14
14 p1 = malloc(sizeof(struct dll));
(gdb) s
__GI___libc_malloc (bytes=12) at malloc.c:2914
2914 {
(gdb)
2919 = force_reg (__malloc_hook);
(gdb)
2920 if (__builtin_expect (hook != NULL, 0))
(gdb)
2921 return (*hook)(bytes, RETURN_ADDRESS (0));
(gdb)
malloc_hook_ini (sz=12, caller=0x8048439) at hooks.c:30
30 {
(gdb)
31 __malloc_hook = NULL;
(gdb)
32 ptmalloc_init();
(and further into obscurity)
但是,next
:
[wally@lenovoR61 ~]$ gdb t
GNU gdb (GDB) Fedora (7.3.50.20110722-16.fc16)
Copyright (C) 2011 Free Software Foundation, Inc.
...
Reading symbols from /home/wally/t...done.
(gdb) start
Temporary breakpoint 1 at 0x804842d: file t.c, line 14.
Starting program: /home/wally/t
Temporary breakpoint 1, main () at t.c:14
14 p1 = malloc(sizeof(struct dll));
(gdb) n
15 p2 = malloc(sizeof(struct dll));
(gdb)
16 p3 = malloc(sizeof(struct dll));
(gdb)
17 p4 = malloc(sizeof(struct dll));
(gdb)
18 p5 = malloc(sizeof(struct dll));
(gdb)
19 p1->prev = NULL; p1->data = 1; p1->next = p2;
(gdb)
20 p2->prev = p1; p2->data = 2; p2->next = p3;
(gdb)
21 p3->prev = p2; p3->data = 3; p3->next = p4;
(gdb)
22 p4->prev = p3; p4->data = 4; p4->next = p5;
(gdb)
23 p5->prev = p4; p5->data = 5; p5->next = NULL;
(gdb)
24 head=p1;
(gdb)
26 int count=0, pos=0, i=0;
(gdb)
27 printf("add of p1::%p add of p2::%p add of p3::%p add of p4::%p add of p5::%p\n", p1, p2, p3, p4, p5);
(gdb)
add of p1::0x804a008 add of p2::0x804a018 add of p3::0x804a028 add of p4::0x804a038 add of p5::0x804a048
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
29 count++;
(gdb)
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
29 count++;
(gdb)
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
29 count++;
(gdb)
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
29 count++;
(gdb)
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
29 count++;
(gdb)
28 for (temp = p1; temp != NULL; temp = temp->next)
(gdb)
31 if (count%2==0)
(gdb)
35 pos=count/2;
(gdb)
36 printf("pos::%d\n",pos+1);
(gdb)
pos::3
37 for (i=0; i<=pos; i++)
(gdb)
39 for (temp = p1;temp != NULL;temp = temp->next)
(gdb)
41 if (i==pos)
(gdb)
39 for (temp = p1;temp != NULL;temp = temp->next)
(gdb)
(and continues to work well)
关于无法在 gdb 中的 printf 语句后运行调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25584773/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!