[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-inotify-init.rst
blobcee4c7bf4fed5bb76b664b0548d0685677ed90af
1 .. title:: clang-tidy - android-cloexec-inotify-init
3 android-cloexec-inotify-init
4 ============================
6 The usage of ``inotify_init()`` is not recommended, it's better to use
7 ``inotify_init1()``.
9 Examples:
11 .. code-block:: c++
13   inotify_init();
15   // becomes
17   inotify_init1(IN_CLOEXEC);