我正在尝试使用递归叉子系统创建一个包含 800 个整数的数组的合并排序,以便每个最底部的子项(总共 8 个)qsort 100 个,然后将数组传递回它们各自的父进程以进行合并排序并再次通过。
由于某种原因,该函数在第一组最底层的子进程完成对其父进程的写入后挂起。
我的递归 fork 函数接受 800 的初始数组...
static void forkSort(int* parentNums, int size)
{
printf("PPid:%ld Pid:%ld Size:%d\n", (long)getppid(), (long)getpid(), size);
int childNums[size/2], fd[2], left, right;
if(size <= 100) //Send sorted array to parent thru pipe
{
qsort(parentNums, size, sizeof(int), compare);
write(fd[1], &parentNums, sizeof(parentNums));
exit(0);
}
if (pipe(fd)==-1){perror("Failed");}
size /= 2;
if(!(left = tryFork()) || !(right = tryFork())) //Children
{
if(left) copy(childNums, parentNums, size);
else copy(childNums, parentNums + size, size);
forkSort(childNums, size);
}
//Parents
int first[size], second[size], combined[size*2];
read(fd[0], first, sizeof(first));
read(fd[0], second, sizeof(second));
mergeSort(first, second, combined, size);
if(size*2 == SIZE) //Finished, write to out.dat
printArray(combined, SIZE);
else
write(fd[0], combined, sizeof(combined));
}