gpt4 book ai didi

关闭文件描述符fd[i][2]的多个id channel

转载 作者:行者123 更新时间:2023-11-30 15:36:51 30 4
gpt4 key购买 nike

void helper(int *fd, int *total) {
int i;
for (i=0; i < (*total); i++) {
close(fd[i][0]);
}
}

下面是我的伪代码,它 fork 了多个子进程和管道,在所有子进程完成读取后,它们调用辅助函数来关闭 channel 的读取端。

int main() {
.
int fd[4][2]
.
.
.
if (fork()==0) {
helper(&(fd[4][2]), &i)

我收到一条错误消息:

error: subscript value is neither an array nor pointer nor vector

编辑:将“for()”拼写错误为“fork()”

最佳答案

int *fd 是维度数组的指针,因此您不能像这样将其项目作为二维数组引用:fd[i][0]

再次,fd[4][2] 对于数组访问是错误的,因为 [4][2] 超出范围。

关于关闭文件描述符fd[i][2]的多个id channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22421214/

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