android-cloexec-creat¶
不建议使用 creat()
,最好使用 open()
。
示例
int fd = creat(path, mode);
// becomes
int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);
不建议使用 creat()
,最好使用 open()
。
示例
int fd = creat(path, mode);
// becomes
int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, mode);