Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qfdcontainer.cpp
Go to the documentation of this file.
1// Copyright (C) 2019 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Marc Mutz <marc.mutz@kdab.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
5#include <private/qcore_unix_p.h>
6
8
9void QFdContainer::reset() noexcept
10{
11 if (m_fd >= 0)
12 qt_safe_close(m_fd);
13 m_fd = -1;
14}
15
16QT_END_NAMESPACE