gpt4 book ai didi

c - 尝试克隆函数时出现段错误(在 C 中)

转载 作者:太空狗 更新时间:2023-10-29 12:15:01 25 4
gpt4 key购买 nike

我正在尝试制作康威的人生游戏,当我使用单线程时,它运行良好,但如果我尝试使用 clone() 制作它,它会导致段错误。如果可能的话,谁能帮我弄清楚为什么?

主要

int main(int argc, char *argv[])
{
const int STACK_SIZE=65536;
int checkInit=0;
int i;
int j;
int *stack;
int *stackTop;
FILE *file1;
int numThreads;

if(argc != 3) {
fprintf(stderr, "Usage: %s <Executable> <Input file> <Threads>\n", argv[0]);
exit(1);
}

file1=fopen(argv[1],"r");
if(file1==NULL) { //check to see if file exists
fprintf(stderr, "Cannot open %s\n", argv[1]);
exit(1);
}

fscanf(file1,"%d",&N);

stack=malloc(STACK_SIZE);
if(stack==NULL) {
perror("malloc");
exit(1);
}
stackTop=stack+STACK_SIZE;

numThreads=atoi(argv[2]);
calcPerThread=N/numThreads;
eCalcPerThread=calcPerThread;

B = malloc(N * sizeof(int *));
A = malloc(N * sizeof(int *));
for (i = 0; i < N; i++) {
A[i] = malloc(N * sizeof(int));
B[i] = malloc(N * sizeof(int));
}

system("clear");
for(i=0; i<N+2; i++)
printf("-");
printf("\n");
for (i=0; i<N; i++) {
printf("|");
for(j=0; j<N; j++) {
if(A[i][j] == 1)
printf("x");
else
printf(" ");
}
printf("|\n");
}
for(i=0; i<N+2; i++)
printf("-");
printf("\n");

printf("Press [ENTER] for the next generation.\n");

fclose(file1);

while(getchar()) {
system("clear");
clone(growDie,stackTop,CLONE_VM|CLONE_FILES,NULL);
display(N);
}
}

GDB 错误

Program received signal SIGSEGV, Segmentation fault.
clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:72
72 ../sysdeps/unix/sysv/linux/i386/clone.S: No such file or directory.
in ../sysdeps/unix/sysv/linux/i386/clone.S
Current language: auto
The current source language is "auto; currently asm".

我认为问题出在 stackTop,但我不确定。

最佳答案

你的指针算法有问题。

stack=malloc(STACK_SIZE);

分配 STACK_SIZE 字节。但是..

int *stack;
stackTop=stack+STACK_SIZE;

stack 是一个指向 int 的指针。因此指针算法将导致每个 +1 为 4 个字节而不是 1 个字节(假设是 32 位系统)。

您可以通过多种方式解决此问题:

  • 将堆栈和堆栈顶部设置为“char *”而不是“int *”
  • 在算术中投栈:stackTop = ((unsigned int)stack)+STACK_SIZE。

我更喜欢第一个选项。

关于c - 尝试克隆函数时出现段错误(在 C 中),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28597698/

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