- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个问题似乎是随机的。当我运行下面的代码时,有时它会一直运行到结束,有时它会给我如下错误:
*** glibc detected *** ./Alg: munmap_chunk(): invalid pointer: 0x0000000000eba0c0 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x7eb96)[0x7ff38230ab96]
./Alg[0x40084a]
./Alg[0x400bae]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7ff3822ad76d]
./Alg[0x4005e9]
======= Memory map: ========
00400000-00401000 r-xp 00000000 00:16 1078 /home/Students/jb2100/Desktop/Alg
00601000-00602000 r--p 00001000 00:16 1078 /home/Students/jb2100/Desktop/Alg
00602000-00603000 rw-p 00002000 00:16 1078 /home/Students/jb2100/Desktop/Alg
00eba000-00edb000 rw-p 00000000 00:00 0 [heap]
7ff382076000-7ff38208b000 r-xp 00000000 2b:00 22376 /rofs/lib/x86_64-linux-gnu/libgcc_s.so.1
7ff38208b000-7ff38228a000 ---p 00015000 2b:00 22376 /rofs/lib/x86_64-linux-gnu/libgcc_s.so.1
7ff38228a000-7ff38228b000 r--p 00014000 2b:00 22376 /rofs/lib/x86_64-linux-gnu/libgcc_s.so.1
7ff38228b000-7ff38228c000 rw-p 00015000 2b:00 22376 /rofs/lib/x86_64-linux-gnu/libgcc_s.so.1
7ff38228c000-7ff382441000 r-xp 00000000 2b:00 22378 /rofs/lib/x86_64-linux-gnu/libc-2.15.so
7ff382441000-7ff382640000 ---p 001b5000 2b:00 22378 /rofs/lib/x86_64-linux-gnu/libc-2.15.so
7ff382640000-7ff382644000 r--p 001b4000 2b:00 22378 /rofs/lib/x86_64-linux-gnu/libc-2.15.so
7ff382644000-7ff382646000 rw-p 001b8000 2b:00 22378 /rofs/lib/x86_64-linux-gnu/libc-2.15.so
7ff382646000-7ff38264b000 rw-p 00000000 00:00 0
7ff38264b000-7ff38266d000 r-xp 00000000 2b:00 22391 /rofs/lib/x86_64-linux-gnu/ld-2.15.soAborted (core dumped)
我真的不确定发生了什么,为什么有时有效有时无效。如果你们能提供一些见解,我将不胜感激。谢谢!以下是我的代码:
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#define SIZE 40
#define BUFSIZE 10
struct queueNode
{
int data;
struct queueNode *next;
};
struct queue
{
struct queueNode *first; //pointer to first item
struct queueNode *last; //pointer to last item
};
float calcBaseline(struct queue *q)
{
printf("Starting baseline calc\n");
struct queueNode *temp = q->first;
float base = 0;
int i, total = 0;
while(temp != NULL)
{
total += temp->data;
temp = temp->next;
}
base = total/BUFSIZE;
printf("ending baseline calc\n");
return base;
}
void enqueue(struct queue *q, int value)
{
printf("Starting enqueue\n");
struct queueNode *newNode = malloc(sizeof(struct queueNode));
newNode->data = value;
newNode->next = NULL;
if(q->first == NULL)//if queue is empty
{
q->first = q->last=newNode; //both first and last point to the new node
}
else
{
q->last->next = newNode; //append newNode after last element
q->last = q->last->next; //point "last" pointer to the new node
}
printf("ending enqueue\n");
}
void dequeue(struct queue *q)
{
printf("Starting dequeue\n");
struct queueNode *temp = q->first;
q->first = q->first->next; //moves first pointer to next item
free(temp); //deletes the old first node
printf("Ending dequeue\n");
}
void destroyQueue(struct queue *q)
{
printf("Starting destroyQueue\n");
struct queueNode *temp1 = q->first;
struct queueNode *temp = q->first->next;
while(temp != NULL)
{
free(temp1);
temp1 = temp;
temp = temp->next;
}
printf("ending destroyQueue\n");
}
int main()
{
int temp, i, j, TEST = 10;
float baseline = 0.0;
int *myArray;
myArray = malloc(SIZE * sizeof(int));
myArray[0] = 0;
srand((unsigned)time(NULL));
struct queue q;
q.first = NULL;
//initialize the queue
for(i = 0; i < BUFSIZE; i++)
{
myArray[i] = rand()%TEST;
enqueue(&q, myArray[i]);
}
baseline = calcBaseline(&q);
printf("%.2f\n",baseline);
//After baseline is established generate spikes and baseline numbers
for (i = BUFSIZE; i < SIZE; i++)
{
temp = rand()%100;
if(temp <= 90)
{
myArray[i] = rand()%TEST;
dequeue(&q);
enqueue(&q, myArray[i]);
baseline = calcBaseline(&q);
printf("%.2f\n",baseline);
}
else
{
//Assume minimum spike rise time is 10 samples
for(j = i; j < i+10; j++)
{
myArray[j] = myArray[j-1]+1;
if(myArray[j] <TEST)
{
dequeue(&q);
enqueue(&q, myArray[j]);
baseline = calcBaseline(&q);
printf("%.2f\n",baseline);
}
}
for(j = i+10; j < i+20; j++)
{
myArray[j] = myArray[j-1]-1;
if(myArray[j] <TEST)
{
dequeue(&q);
enqueue(&q, myArray[j]);
baseline = calcBaseline(&q);
printf("%.2f\n",baseline);
}
}
i+=19;
}
if(temp < 99)
{
TEST++;
}
}
for(i = 0; i < SIZE; i++)
{
printf("myArray[%d] = %d\n",i, myArray[i]);
}
destroyQueue(&q);
return 0;
}
最佳答案
首先,您没有释放以下行:
myArray = malloc(SIZE * sizeof(int));
和
struct queueNode *newNode = malloc(sizeof(struct queueNode));
分别是第111行和第42行。但是你的主要问题是你的函数出队,你应该有:
void dequeue(struct queue *q)
{
printf("Starting dequeue\n");
struct queueNode *temp = q->first->next;
free(q->first); //deletes the old first node
q->first = temp; //moves first pointer to next item
printf("Ending dequeue\n");
}
代替
void dequeue(struct queue *q)
{
printf("Starting dequeue\n");
struct queueNode *temp = q->first;
q->first = q->first->next; //moves first pointer to next item
free(temp); //deletes the old first node
printf("Ending dequeue\n");
}
因为如果你说 temp = q->first 然后 q->first = q->first->next,你可能会释放 q->first->next 而不是 q->first。通过更改顺序,您可以确保自己确实释放了旧指针。
关于c - 随机 "munmap_chunk()"和段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19550102/
我正在使用低级 SDL 函数编写渲染器以了解其工作原理。我现在正在尝试绘制多边形,但可能由于我对 C++ 缺乏经验而遇到错误。运行代码时出现 munmap_chunk() - Invalid poin
我有一个用于气象站的长时间运行的 python 脚本。该脚本从天气传感器捕获数据并将它们上传到 mySql 数据库以及地下天气。 我遇到的问题是脚本将运行多天然后在没有回溯的情况下崩溃。我已经对此进行
这个问题已经有答案了: how 'free' works when pointer is incremented (9 个回答) 已关闭 4 年前。 我有一个char* path这是全局的,后来我调用
我正在使用模板制作一个简单的排序程序,并且正在努力处理字符串大小写。代码: template void Join_Segments(typ *tab, int begin1, int begin2,
我有一个问题似乎是随机的。当我运行下面的代码时,有时它会一直运行到结束,有时它会给我如下错误: *** glibc detected *** ./Alg: munmap_chunk(): invali
我发现了我的程序中的错误,并决定编写一个简单的程序,这将帮助我了解发生了什么。在这里: #include #include char * first() { char * word = m
我编写了一个程序来进行一些数据分析,该数据存储在一个名为 P 的全局结构中。我在一个函数中为该结构分配内存,然后,因为我需要它来处理整个函数程序中,直到 main 的最后才调用 free。 Mallo
我不明白释放是如何进行的。我知道当我尝试两次释放内存时会发生这种情况。然而,这真的难倒了我。 我试着只发布代码的相关部分。 FILE* file = fopen(path, "r"); if (fil
我一直在试验动态内存分配,并且遇到了 C 中的 munmap_chunk 错误。这是我的代码。 #include #include #include void get_input(char **
我在C上写了链表。 #define MAX_TOKEN_LENGTH 256 struct node { char *value; struct node *next; }; stru
我正在为微 Controller 编写程序,我需要将 vector 数据分配到内存中的特定位置(将其存储在闪存中)。 #include #include struct struct_gauss {
我编写了一个使用 vector 和 map 的程序。 当我运行它时,我收到以下错误消息: lru: malloc.c:3552: munmap_chunk: 断言 `ret == 0' 失败。中止 这
我收到错误“munmap_chunk():无效指针”,我不知道为什么。当我使用 MultipliedByMatrix 方法时出现问题。无法正确删除用该方法创建的矩阵。 #include "matrix
这样的问题很多,但是看了一些案例后,我想这个问题是特定于案例的,所以我贴出我的代码并指出问题发生的地方,你可以耐心阅读我的代码吗? uniBTree.h #ifndef uniBTree_H #def
我创建了一个堆变量并分配了一个栈变量地址。并在使用后删除堆变量。所有这些都在一个功能中。我无法理解为什么会出现 munmap_chuck():无效指针错误,尽管我觉得我没有做任何超出范围的事情。 这样
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我的程序似乎崩溃了 munmap_chunk(): invalid pointer错误。这意味着某处一定是无效的破坏,无效的免费使用或类似的东西。但我不知道在哪里以及为什么。仍然给出此错误的简化代码如
下一个代码被 munmap_chunk() 破坏:无效指针 #include #include #include using namespace std; vector modules = {3
我是编程新手,所以即使尝试用谷歌搜索这个错误,我也找不到任何与我的项目相关或简单到足以让我遵循的内容。 我必须创建一个函数来迭代地反转字符串,然后创建另一个函数以递归方式执行此操作。迭代函数工作得很好
在我的 linux (Ubuntu) 机器上,以下代码给出了 munmap_chunk():invalid pointer 错误。 #include using namespace std; str
我是一名优秀的程序员,十分优秀!