试图编译简单的inotify程序

时间:2017-01-09 10:40:04

标签: c linux

我正在尝试使用内核版本2.6.15在Ubuntu 6.06.2上编译inotify simpe代码。 我的代码是

#include <errno.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/inotify.h>
#include <unistd.h>
#include <fcntl.h>

#define IN_NONBLOCK O_NONBLOCK


int main(int argc, char* argv[])
{
        char buf;
        int fd, i, poll_num;
        int *wd;
        nfds_t nfds;
        struct pollfd fds[2];

        if (argc < 2) {
                printf("Usage: %s PATH [PATH ...]\n", argv[0]);
                exit(EXIT_FAILURE);
        }

        printf("Press ENTER key to terminate.\n");

        /* Create the file descriptor for accessing the inotify API */

        fd = inotify_init();
        if (fd == -1) {
                perror("inotify_init1");
                exit(EXIT_FAILURE);
        }


        close(fd);

        exit(EXIT_SUCCESS);
}

我也安装了libc6-dev 2.3.6。 但是当我编译这段代码时

error: sys/inotify.h: No such file or directory

当我使用linux / inotify.h比我得到

/tmp/ccUTUEAq.o: In function `main':ionotify.c:(.text+0x50): undefined reference to `inotify_init'.

请有人告诉我如何解决这个问题。

1 个答案:

答案 0 :(得分:-1)

inotify.h必须存在于系统路径中。

即/usr/include/i386-linux-gnu/sys/inotify.h

sys / inotify.h不是标准库的一部分! (但它是Linux盒子上通常可用的库的一部分)