摘要: int flags = fcntl(fd, F_GETFD); flags |= FD_CLOEXEC; //设置执行exec系列函数时自动关闭fd文件描述符 fcntl(fd, F_SETFD, flags) 阅读全文
posted @ 2019-11-06 22:57 yongfengnice 阅读(1570) 评论(0) 推荐(0) 编辑