[lldb] Fix "exact match" debug_names type queries (#118465)
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-epoll-create1.rst
blob7e7c4adb0795daba236d3c8edd9a760a8e2d3970
1 .. title:: clang-tidy - android-cloexec-epoll-create1
3 android-cloexec-epoll-create1
4 =============================
6 ``epoll_create1()`` should include ``EPOLL_CLOEXEC`` in its type argument to
7 avoid the file descriptor leakage. Without this flag, an opened sensitive file
8 would remain open across a fork+exec to a lower-privileged SELinux domain.
10 Examples:
12 .. code-block:: c++
14   epoll_create1(0);
16   // becomes
18   epoll_create1(EPOLL_CLOEXEC);