- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个 C 程序(很多数字,太长无法发布),我用它编译
gcc -g -O0 program.c -o program
我正在尝试使用 gdb 和 valgrind memcheck 对其进行调试。在对代码进行一些更改后,我发现
valgrind --tool=memcheck --log-file=output.log ./program
给予
==15866== Memcheck, a memory error detector
==15866== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et al.
==15866== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright info
==15866== Command: ./program
==15866== Parent PID: 3362
==15866==
==15866== Warning: client switching stacks? SP change: 0xbe88bcd8 --> 0xbe4e1f70
==15866== to suppress, use: --max-stackframe=3841384 or greater
==15866== Invalid write of size 4
==15866== at 0x804B7BE: main (program.c:1396)
==15866== Address 0xbe4e1f74 is on thread 1's stack
==15866==
==15866== Invalid write of size 4
==15866== at 0x804B7C2: main (program.c:1396)
==15866== Address 0xbe4e1f70 is on thread 1's stack
==15866==
==15866== Invalid read of size 4
==15866== at 0x4320011: on_exit (on_exit.c:34)
==15866== by 0x43064D2: (below main) (libc-start.c:226)
==15866== Address 0xbe4e1f70 is on thread 1's stack
==15866==
==15866== Invalid read of size 4
==15866== at 0x4320022: on_exit (on_exit.c:37)
==15866== by 0x43064D2: (below main) (libc-start.c:226)
==15866== Address 0xbe4e1f74 is on thread 1's stack
还有很多这样的。
valgrind --tool=memcheck --max-stackframe=3841384 --log-file=output.log ./program
不打印任何错误。但让我感到困惑的是,对于两个 valgrind 调用,程序提前退出(没有错误消息)并且不执行它应该执行的计算。具有相同编译器选项但在没有 valgrind 的情况下运行的行为是完全不同的,看起来很正常。但是我怀疑内存错误并想使用 valgrind 来找到它。因此,我的问题是:在使用 valgrind 执行时,什么样的错误会使程序表现如此不同?如果这些是与内存相关的错误,我该如何识别呢?请注意,我很清楚我可以“手动调试”来定位它。但是我是否可以使用 valgrind 运行 gdb 以查看它退出的位置。
最佳答案
我最初在评论中回答:
You're probably causing a stack overflow. Are you allocating "large" arrays on the stack? E.g.
double myArray[10000000];
If so then you should replace such allocations with heap memory usingmalloc
andfree
.
我写了一个简短的 c 程序来故意造成这样的堆栈溢出并检查 valgrind 报告的内容:
#include <stdio.h>
int main(){
// imax*sizeof(double) is too big for the stack.
int imax = 10000000;
double test[imax];
// I do a little math to prevent the stack overflow from being optimized away if -O3 is used.
test[0]=0;
test[1]=1;
for(int i=2; i<imax; i++)
test[i]=0.5*(test[i-1]+test[i-2]);
printf("%e\n", test[imax-1]);
}
果然,valgrind 得出了:
==83869== Warning: client switching stacks? SP change: 0x104802930 --> 0xffbb7520
==83869== to suppress, use: --max-stackframe=80000016 or greater
==83869== Invalid write of size 8
==83869== at 0x100000ED0: main (in ./a.out)
==83869== Address 0xffbb7520 is on thread 1's stack
连同大量其他错误消息,并最终以 Segmentation fault: 11
关于c - 程序通过 valgrind memcheck 提前终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12624373/
如果我终止应用程序,我在尝试保持我的功能运行时卡住了。 是否可以在应用程序未运行时保持核心位置(地理围栏/地理定位)和核心蓝牙运行?如果可能如何解决我的问题?我已经检查了背景模式,并实现了核心定位方法
该程序要求用户输入一个数字,然后从列表中返回详细信息。我该怎么做? do { Scanner in = new Scanner(System.in);
我正在开发一个内部分发的 iOS 应用程序(即,没有应用程序商店),我希望能够以恒定的 10 分钟间隔报告设备的位置。 无论如何,我在我的 plist 中包含了 location 作为字段 UIBac
我的 mongodb 服务器突然收到信号 15(终止)。我不知道为什么 mongodb 崩溃了。以下是日志消息。 Mon Jun 27 07:33:31.701 [signalProcessingTh
我按顺序运行了一堆malloc,并且每次都检查以确保它是成功的。像这样: typedef struct { int *aray; char *string; } mystruct; m
这个问题已经有答案了: How to stop a running pthread thread? (4 个回答) 已关闭 8 年前。 可以使用 pthread_join() 停止线程。但让我们想象一
#include #include #include struct node{ char data; int p; struct node *ptr; }; struct node *st
这个问题已经有答案了: Why should I use a semicolon after every function in javascript? (9 个回答) 已关闭 8 年前。 好吧,我问
我有一个启动多个工作线程的函数。每个工作线程都由一个对象封装,该对象的析构函数将尝试加入线程,即调用if (thrd_.joinable()) thrd_.join();。但是,每个 worker 必
我正在实现一个应用程序,当用户摇动手机时,该应用程序会监听并采取行动。 所以我实现了以下服务: public class ShakeMonitorService extends Service {
我在使用 Xcode 时遇到问题,其中弹出错误“Source Kit Service Terminated”,并且所有语法突出显示和代码完成在 Swift 中都消失了。我怎样才能解决这个问题? 这是一
我想为我的控制台应用程序安全退出,该应用程序将使用单声道在 linux 上运行,但我找不到解决方案来检测信号是否发送到它或用户是否按下了 ctrl+c。 在 Windows 上有内核函数 SetCon
关键: pthread_cancel函数发送终止信号pthread_setcancelstate函数设置终止方式pthread_testcancel函数取消线程(另一功能是:设置取消点) 1 线程取消
下面的程序在不同的选项级别下有不同的行为。当我用 -O3 编译它时,它永远不会终止。当我用 -O0 编译它时,它总是很快就会终止。 #include #include void *f(void *
我有 3 个节点的 K8S 集群,我创建了 3 个副本 pod,应用程序 app1 在所有 pod 上运行,我通过运行 service yaml 文件建立了服务,我可以看到通过运行 kubectl g
我打算使用 nginx 来代理 websocket。在执行 nginx reload/HUP 时,我知道 nginx 等待旧的工作进程停止处理所有请求。然而,在 websocket 连接中,这可能不会
在 Ubuntu 9.10 上使用 PVM 3.4.5-12(使用 apt-get 时的 PVM 包) 添加主机后程序终止。 laptop> pvm pvm> add bowtie-slave add
我编写了一个应用程序来从 iPhone 录制视频。它工作正常,但有一个大问题。当 AVCaptureSession 开始运行并且用户尝试从其库(iPod)播放音频时。此操作将使 AVCaptureSe
我将如何使用NSRunningApplication?我有与启动应用程序相反的东西: [[NSWorkspace sharedWorkspace] launchApplication:appName]
我正在使用 NSTask 执行一系列长时间运行的命令,如下所示: commandToRun = @"command 1;command2"; NSArray *arguments = [NSArray
我是一名优秀的程序员,十分优秀!