[OpenACC] Implement 'collapse' for combined constructs.
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-creat.rst
blobd2892a0fdc5608cf1c1bf7a94d7e27b90e654f27
1 .. title:: clang-tidy - android-cloexec-creat
3 android-cloexec-creat
4 =====================
6 The usage of ``creat()`` is not recommended, it's better to use ``open()``.
8 Examples:
10 .. code-block:: c++
12   int fd = creat(path, mode);
14   // becomes
16   int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);