我正在尝试在后台读取FIFO(使用线程),而我的主程序在无限循环内运行。我想使用select()
,因为否则处理器以100%运行,但我找到的相应example不起作用。这是示例代码:
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <sys/select.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
mkfifo("FIFO", 0666);
fd_set readCheck;
fd_set errCheck;
char buffer[64];
struct timeval timeout;
int rv;
int fd = open("FIFO", O_RDONLY | O_RSYNC);
FD_ZERO(&readCheck);
FD_ZERO(&errCheck);
while (1) {
FD_SET(fd, &readCheck);
FD_SET(fd, &errCheck);
timeout.tv_sec = 1;
timeout.tv_usec = 0;
rv = select(fd, &readCheck, NULL, &errCheck, &timeout);
if (rv < 0) {
printf("Select failed\r\n");
break;
}
if (FD_ISSET(fd, &errCheck)) {
printf("FD error\r\n");
continue;
}
if (FD_ISSET(fd, &readCheck)) {
memset(buffer, 0, sizeof(buffer));
rv = read(fd, buffer, sizeof(buffer));
if (rv < 0) {
printf("Read failed\r\n");
break;
}
printf(buffer);
buffer[64] = '\0';
}
}
close(fd);
return 0;
}
当我写入FIFO文件时没有任何反应,但使用cat FIFO
打印内容。可能是什么问题?
答案 0 :(得分:2)
您必须将第一个参数设置为比最后打开的文件描述符高一个。从select
的手册页页面
nfds是三组中任何一组中编号最高的文件描述符,加上1
更改此行,
rv = select(fd, &readCheck, NULL, &errCheck, &timeout);
到
rv = select(fd+1, &readCheck, NULL, &errCheck, &timeout);
如果您没有提到这一点,那么select将不会检查您的描述符,因此您不会准备好读取文件描述符。
答案 1 :(得分:1)
您的缓冲区被声明为
char buffer[64];
使用
buffer[64] = '\0';
你正在写出界限。
更改
buffer[64] = '\0';
到
buffer[rv] = '\0';