#include "config.h"#include "pnotify.h"#include "pnotify-internal.h"#include <fcntl.h>#include <sys/event.h>Go to the source code of this file.
Functions | |
| void * | bsd_kqueue_loop (void *unused) |
| void | bsd_init_once (void) |
| void | bsd_cleanup (void) |
| int | bsd_add_watch (struct pn_watch *watch) |
| int | bsd_rm_watch (struct pn_watch *watch) |
Variables | |
| pnotify_vtable | BSD_VTABLE |
Definition in file bsd.c.
| struct pnotify_vtable BSD_VTABLE |
Initial value:
{
.init_once = bsd_init_once,
.add_watch = bsd_add_watch,
.rm_watch = bsd_rm_watch,
.cleanup = bsd_cleanup,
}
1.5.1