tidy - android-cloexec-inotify-init — Extra Clang Tools 22.0.0git documentation (original) (raw)

android-cloexec-inotify-init

The usage of inotify_init() is not recommended, it’s better to useinotify_init1().

Examples:

inotify_init();

// becomes

inotify_init1(IN_CLOEXEC);