diff options
author | Marcus Tillmanns <[email protected]> | 2022-04-28 16:15:46 +0200 |
---|---|---|
committer | Marcus Tillmanns <[email protected]> | 2022-05-03 08:26:13 +0000 |
commit | c8024046f92336f540894d73401398ec7da72805 (patch) | |
tree | 37b20ffdaa220e04a75937b953564455abaa8efc /src/libs/utils/processinterface.cpp | |
parent | 1b5b4cb6f4dcf09c3b75afed69259e6ed3a71abf (diff) |
Docker: implement process interface
Change-Id: I57dd9e060ee35280b663611ebb5ddef20b7d0eb7
Reviewed-by: Jarek Kobus <[email protected]>
Diffstat (limited to 'src/libs/utils/processinterface.cpp')
-rw-r--r-- | src/libs/utils/processinterface.cpp | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/src/libs/utils/processinterface.cpp b/src/libs/utils/processinterface.cpp new file mode 100644 index 00000000000..60c3676d2f5 --- /dev/null +++ b/src/libs/utils/processinterface.cpp @@ -0,0 +1,48 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Creator. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +****************************************************************************/ + +#include "processinterface.h" + +#include "qtcassert.h" + +namespace Utils { + +/*! + * \brief controlSignalToInt + * \param controlSignal + * \return Converts the ControlSignal enum to the corresponding unix signal + */ +int ProcessInterface::controlSignalToInt(ControlSignal controlSignal) +{ + switch (controlSignal) { + case ControlSignal::Terminate: return 15; + case ControlSignal::Kill: return 9; + case ControlSignal::Interrupt: return 2; + case ControlSignal::KickOff: QTC_CHECK(false); return 0; + } + return 0; +} + +} // Utils |