使用Linux C select系统调用来监控文件

问题描述 投票:0回答:1

我有以下代码来监视目录的更改,并在终端中打印一些内容。

代码监视两个文件中的更改 - 一个名为

test
,另一个名为
test2
- 执行二进制文件后,即使未触及文件,选择调用也会始终返回。这正常吗?

这是代码:

#include <fcntl.h>      /* fcntl */
#include <sys/select.h> /* select */
#include <stdio.h> /* NULL */

int main() {

    fd_set readfds, writefds;
    int max_fd;

    int fd_1 = open("test", O_RDWR  | O_NONBLOCK);
    int fd_2 = open("test2", O_RDWR | O_NONBLOCK);

    if(fd_1 == -1)
        return -1;

    if(fd_2 == -1)
        return -1;


    while(1) {

        FD_ZERO(&readfds);
        FD_ZERO(&writefds);

        FD_SET(fd_1, &readfds);
        FD_SET(fd_2, &readfds);
        FD_SET(fd_1, &writefds);
        FD_SET(fd_2, &writefds);

        max_fd = (fd_2 > fd_1 ? fd_2 : fd_1) + 1;

        int t_rdy = select(max_fd, &readfds, &writefds, NULL, NULL);

        if(t_rdy == -1)
            return -1;

        int t_fd;
        for(t_fd = 0; t_fd < max_fd; t_fd++) {

            if(t_fd <= 2) continue;

            printf("READ  LIST %d: %s \n", t_fd, (FD_ISSET(t_fd, &readfds) ? "set" : "nope"));
            printf("WRITE LIST %d: %s \n", t_fd, (FD_ISSET(t_fd, &writefds) ? "set" : "nope"));
        }

    }

    return 0;
}
c linux file system-calls
1个回答
2
投票

这正是我所期望的行为。就

select()
而言,磁盘文件始终准备好读取或写入。

© www.soinside.com 2019 - 2024. All rights reserved.