@curaga: Thanks for replying. EDIT: OK, that looks like the stock TC kernel should be configured for inotify. The current kernel does not require a separate daemon running for other apps to receive the inotify events, does it?
When I tried the inotify API in my file manager C-program, I repeatedly checked for pending IO with an ioctl() call, and never saw any pending inotify info, even after deleting and creating files in the watched directory (and the parent directories, all the way up to /). Then, just for testing, I added a blocking read() call on the file descriptor returned by the inotify initialize function. That continued to block even after I deleted and created files in an external shell process. It's acting like either it's not really watching what I intended, or it is, but the kernel isn't providing the event info to the inotify API special file.
I'd like my app to work directly with TC Base. Perhaps if my app needs a separate daemon inotify daemon running, it could be made a dependency if it not too big and difficult to manage. Are either the libnotify or flnotify extensions related to this inotify stuff?
--
Mike L