android-cloexec-inotify-init

不建议使用 inotify_init(),最好使用 inotify_init1()

示例

inotify_init();

// becomes

inotify_init1(IN_CLOEXEC);