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

Segmentation fault when trying to clone a function (in C)

我正在尝试制作康威的人生游戏,当我使用单线程时,它运行良好,但如果我尝试使用 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 *"
  • 算术中的cast栈:stackTop = ((unsigned int)stack)+STACK_SIZE.

我更喜欢第一个选项。