bolt/deps/llvm-18.1.8/clang-tools-extra/docs/clang-tidy/checks/android/cloexec-inotify-init.rst
2025-02-14 19:21:04 +01:00

17 lines
300 B
ReStructuredText

.. title:: clang-tidy - android-cloexec-inotify-init
android-cloexec-inotify-init
============================
The usage of ``inotify_init()`` is not recommended, it's better to use
``inotify_init1()``.
Examples:
.. code-block:: c++
inotify_init();
// becomes
inotify_init1(IN_CLOEXEC);