Extra Clang Tools 5 documentation

clang-tidy - android-cloexec-creat

«  Clang-Tidy Checks   ::   Contents   ::   android-cloexec-fopen  »

android-cloexec-creat

The usage of creat() is not recommended, it’s better to use open().

Examples:

int fd = creat(path, mode);

// becomes

int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);

«  Clang-Tidy Checks   ::   Contents   ::   android-cloexec-fopen  »