gpt4 book ai didi

c - 为什么会出现segmentation Fault错误

转载 作者:太空宇宙 更新时间:2023-11-04 04:38:27 25 4
gpt4 key购买 nike

我遇到错误段错误(核心已转储)

我已经将它缩小到函数 threadx 中的这些行

    while (colatz_nums[j] != 1)
{j++;
if ((m % 2)==0)
{ colatz_nums[j] = m/2;}

else
{colatz_nums[j] = 3 * m +1;}
}

如果我删除这些行,我就不会收到错误。我添加了一个 while 循环测试并且它有效所以它一定是这些行中的东西。错误请指出

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h> // pid_t
#include <unistd.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/mman.h>
#include <sys/fcntl.h>
#include <sys/stat.h>

#include <pthread.h>

#define N 2

void *thread (void *vargp);
void *threadx(void *vargp);

char **ptr;

int fib_nums[25] ;
int colatz_nums[25];
int last_collatz = 0;

int main()
{

int i;
pthread_t tid[2];
char *msgs[N] = {
"Hello from foo",
"Hello from bar"
};

printf("Parent thread started with PID= %d and parent PID %d\n", getpid(), getppid());

ptr = msgs;

pthread_create(&tid[0], NULL, thread, (void *)1);
printf(" 1st thread started with PID= %d and parent PID %d\n", getpid(), getppid());


pthread_create(&tid[1], NULL, threadx, (void *)2 );
printf("2nd thread started with PID= %d and parent PID %d\n", getpid(), getppid());

pthread_join(tid[1], NULL);
pthread_join(tid[0], NULL);
}

void *thread(void *vargp)
{
int myid = (int)vargp;
static int cnt = 0;
printf(" thread ");

int i=cnt;
for (;i <10 ;i=i+1)
{
printf("[%d] %d\n",myid, i);
sleep(cnt);
}

return NULL;
}

void *threadx(void *vargp )
{
int myid = (int)vargp;
static int cnt = 0;
printf(" threadx \n" );
int j = 0;
int m = 8;
colatz_nums[0] = 8;

while (colatz_nums[j] != 1)
{
j++;
if ((m % 2)==0)
{
colatz_nums[j] = m/2;
}

else
{
colatz_nums[j] = 3 * m +1;
}
}
last_collatz = j;

for (j=0; j <= last_collatz; j++)
printf ( " j %d",colatz_nums[j]);

printf ( "\n");
return NULL;
}

最佳答案

您永远不会检查 colatz_nums 的界限。您正在使用 j 访问它并在不限制为 24 的情况下递增它。

你先执行

colatz_nums[0] = 8

将数组的第一个值设置为 8。然后将它与 1 进行比较,而 1 不是,然后循环直到在数组中找到 1。

循环中的问题是您首先递增 j 然后设置位于索引 j 的值(这是您将在下一轮测试 1 的下一个值循环的)到一个永远不会是 1 的值(4 或 25,但在你的例子中总是 4)。

然后您将永远循环直到发生崩溃(越界访问)。

关于c - 为什么会出现segmentation Fault错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28822866/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com