factor/vm/os-linux.h

11 lines
283 B
C
Raw Normal View History

2007-09-20 18:09:08 -04:00
#define UNKNOWN_TYPE_P(file) ((file)->d_type == DT_UNKNOWN)
#define DIRECTORY_P(file) ((file)->d_type == DT_DIR)
2007-11-14 16:36:48 -05:00
#ifndef environ
extern char **environ;
#endif
2008-02-02 08:02:32 -05:00
int inotify_init(void);
int inotify_add_watch(int fd, const char *name, u32 mask);
int inotify_rm_watch(int fd, u32 wd);