0
我正在使用基於Linux的路由器,我使用inotify_init()
編寫代碼來監視文件。交叉編譯沒有警告或錯誤信息是這樣做,但當我嘗試執行代碼它顯示像function not implemented
inotify_init()函數未實現錯誤
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);
}
什麼是您的嵌入式Linux內核版本?和完整的錯誤信息? –