0

我正在尝试分叉一个孩子并向其写入一个结构,但由于某种原因,写入失败。这是我到目前为止所得到的:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(){
    pid_t pid;
    int pfd[2];
    int rv;
    if(pipe(pfd) == -1){
        printf("Pipe failed\n");
    }

    struct t{
        int count[26];
        char array[4];
    };
    struct t st;

    if((pid = fork()) < 0){
        printf("Fork error\n");
    }else if(pid == 0){
        close(pfd[1]);
        rv = read(pfd[0],st,sizeof(struct t));
        printf("Read string: %d\n",rv);
    }else{
        int i = 0;
        for(i = 0; i < 26; i++){
            st.count[i] = i;
        }
        for(i = 0; i < 3; i++){
            st.array[i] = 'A';
        }
        st.array[3] = '\0';

        close(pfd[0]);
        rv = write(pfd[1],st,sizeof(struct t));
        printf("wrote: %d",rv);
        close(pfd[1]);
    }
}

这让我整晚都死了。我怀疑这与我没有完全理解指向结构的指针有关。我打印了 sizeof(struct t) ,它返回了 108 个字节(如预期的那样),我认为 st 是指向结构开头的指针,这意味着写入命令将从那里开始并写入前 108 个字节,但显然情况并非如此. 我错过了什么?

4

1 回答 1

1

试试&stst是结构本身。&从中取出一个指针。

您可能需要启用(或注意)编译器警告。添加-Wall-Wall -Wextra到编译命令。


您需要包含该read函数的头文件。

#include <unistd.h>

现在您应该收到错误消息。

于 2013-04-13T04:29:20.680 回答