[lldb] Fix "exact match" debug_names type queries (#118465)
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-accept.rst
blob58ce05f3e18b536a83d66eb94cc7fa1af694dc53
1 .. title:: clang-tidy - android-cloexec-accept
3 android-cloexec-accept
4 ======================
6 The usage of ``accept()`` is not recommended, it's better to use ``accept4()``.
7 Without this flag, an opened sensitive file descriptor would remain open across
8 a fork+exec to a lower-privileged SELinux domain.
10 Examples:
12 .. code-block:: c++
14   accept(sockfd, addr, addrlen);
16   // becomes
18   accept4(sockfd, addr, addrlen, SOCK_CLOEXEC);