私は、o'reillyのlinuxデバイスドライバブックバージョン3からプログラムコードを挿入して作成したttyの書き込みと読み込みをプログラムする簡単なパイプを使用しています。私はこれをinsmod
で挿入し、tinytty0
という名前のデバイスを得ました。バーチャルttyのパイプ使用
私の質問は私がこのデバイスを使ってパイプでデータを読み書きすることができますか?私は一度試してみましたが、データはドライバに書かれていますが、読書は行われていません。私は理由を知りません。コードは、あなたがLinux Device Drivers
本からtinytty
ドライバーが何を誤解されている必要があり
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include<fcntl.h>
int main(void)
{
int fd[2], nbytes;
pid_t childpid;
char string[] = "Hello, world!\n";
char readbuffer[80];
pipe(fd);
if((childpid = fork()) == -1)
{
perror("fork");
exit(1);
}
if(childpid == 0)
{
/* Child process closes up input side of pipe */
close(fd[0]);
fd[1]=open("/dev/ttytiny0",O_WRONLY);
if(fd[1]<0)
{
printf("the device is not opened\n");
exit(-1);
}
/* Send "string" through the output side of pipe */
write(fd[1], string, (strlen(string)+1));
exit(0);
}
else
{
/* Parent process closes up output side of pipe */
close(fd[1]);
fd[0]=open("/dev/ttytiny0",O_RDONLY);
if(fd[0]<0)
{
printf("the device is not opened\n");
exit(-1);
}
/* Read in a string from the pipe */
nbytes = read(fd[0], readbuffer, sizeof(readbuffer));
printf("Received string: %s", readbuffer);
}
return(0);
}
読み取り値(nbytesの値)の戻り値は何ですか? – SKi