libinotify-kqueue icon indicating copy to clipboard operation
libinotify-kqueue copied to clipboard

NetBSD Google Summer of Code 2011 project (#2)

Results 8 libinotify-kqueue issues
Sort by recently updated
recently updated
newest added

We're trying to create an fsnotifier version for FreeBSD/OpenBSD's IntelliJ ports with libinotify but are running into trouble when trying to stress test it. It hangs in an `sbwait` state...

Hi, I'm getting the following on FreeBSD-10.2 using version b2873cf8a94b0574819075a003e33c0405f1b690: ``` ..........x............x.....x......x....x.......xx......................................x...x....x.x.....x.x.......... In test "Directory notifications": failed: receive IN_MOVED_FROM event on moving file from directory to another location within the...

A rare but quite reproducible issue (at least) on NetBSD 6.99.

``` 78 worker_sets_extend (worker_sets *ws, ... 86 void *ptr = NULL; 87 ptr = realloc (ws->events, sizeof (struct kevent) * to_allocate); 88 if (ptr == NULL) { ``` `realloc` can...

``` $ gcc test.c -L.libs -I. -linotify -o test $ test /tmp/test $ touch /tmp/test/1 $ touch /tmp/test/2 $ rm /tmp/test/1 $ rm /tmp/test/2 ``` The `IN_DELETE` notification for `2`...

Unfortunately, the Glib GIO still uses its own copy of `dep-list.[ch]`. Recently some changes have been made (#12), and these changes should be reflected in the Glib's main tree. Opening...

I use the current version of code from in_isdir branch on FreeBSD 10.0-RELEASE #0 r260789 amd64 with simple demo software, described below. I found, that libinotify-kqueue works properly during some...

Hi, On FreeBSD I built incron (on top of your libinotify) : http://inotify.aiken.cz/?section=incron&page=about&lang=en it works great to minitor files but it fails at monitoring directories: $ ./incrontab -l /tmp IN_ALL_EVENTS...