~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to third-party/qca/qca-gnupg/gpgproc/sprocess.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 <unistd.h>
 
24
# include <fcntl.h>
 
25
#endif
 
26
 
 
27
namespace gpgQCAPlugin {
 
28
 
 
29
//----------------------------------------------------------------------------
 
30
// SProcess
 
31
//----------------------------------------------------------------------------
 
32
SProcess::SProcess(QObject *parent)
 
33
:QProcess(parent)
 
34
{
 
35
}
 
36
 
 
37
SProcess::~SProcess()
 
38
{
 
39
}
 
40
 
 
41
#ifdef Q_OS_UNIX
 
42
void SProcess::setInheritPipeList(const QList<int> &list)
 
43
{
 
44
        pipeList = list;
 
45
}
 
46
 
 
47
void SProcess::setupChildProcess()
 
48
{
 
49
        // set the pipes to be inheritable
 
50
        for(int n = 0; n < pipeList.count(); ++n)
 
51
                ::fcntl(pipeList[n], F_SETFD, (::fcntl(pipeList[n], F_GETFD) & ~FD_CLOEXEC));
 
52
}
 
53
#endif
 
54
 
 
55
}