我正在使用基于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);
}
答案 0 :(得分:0)
您的系统正在使用的内核缺少inotify功能。检查你的内核配置并确保它在那里。