inotify_init()函数未实现ERROR

时间:2016-12-07 12:04:54

标签: linux-kernel embedded-linux system-calls router inotify

我正在使用基于Linux的路由器,我使用inotify_init()编写代码来监控文件。交叉编译没有出现警告或错误消息,但当我尝试执行该代码时,它显示错误,如function not implemented

 if ( (fp = inotify_init()) < 0  ) {
    printf("something went wrong with inotify_init()! %s\n", strerror(errno));
    printf("#### 1 can't open file\n");
    goto err; //exit(0);
}

1 个答案:

答案 0 :(得分:0)

您的系统正在使用的内核缺少inotify功能。检查你的内核配置并确保它在那里。