1/*
2 * Copyright (C) 2003-2005 Justin Karneges <justin@affinix.com>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
17 *
18 */
19
20#include "sprocess.h"
21
22#ifdef Q_OS_UNIX
23#include <fcntl.h>
24#include <unistd.h>
25#endif
26
27namespace gpgQCAPlugin {
28
29//----------------------------------------------------------------------------
30// SProcess
31//----------------------------------------------------------------------------
32SProcess::SProcess(QObject *parent)
33 : QProcess(parent)
34{
35#ifdef Q_OS_UNIX
36#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
37 setChildProcessModifier([this]() {
38 // set the pipes to be inheritable
39 for (int n = 0; n < pipeList.count(); ++n)
40 ::fcntl(fd: pipeList[n], F_SETFD, (::fcntl(fd: pipeList[n], F_GETFD) & ~FD_CLOEXEC));
41 });
42#endif
43#endif
44}
45
46SProcess::~SProcess()
47{
48}
49
50#ifdef Q_OS_UNIX
51void SProcess::setInheritPipeList(const QList<int> &list)
52{
53 pipeList = list;
54}
55
56#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
57void SProcess::setupChildProcess()
58{
59 // set the pipes to be inheritable
60 for (int n = 0; n < pipeList.count(); ++n)
61 ::fcntl(pipeList[n], F_SETFD, (::fcntl(pipeList[n], F_GETFD) & ~FD_CLOEXEC));
62}
63#endif
64#endif
65
66}
67

source code of qca/plugins/qca-gnupg/gpgproc/sprocess.cpp