aboutsummaryrefslogtreecommitdiffstats
path: root/fastos/src/vespa/fastos/process.cpp
blob: 8e4f4afdc987716022775ddf3c82c8be3fe1a6fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "process.h"

FastOS_ProcessInterface::FastOS_ProcessInterface (const char *cmdLine,
                         FastOS_ProcessRedirectListener *stdoutListener,
                         FastOS_ProcessRedirectListener *stderrListener) :
    _cmdLine(cmdLine),
    _stdoutListener(stdoutListener),
    _stderrListener(stderrListener),
    _next(nullptr),
    _prev(nullptr)
{
}

FastOS_ProcessInterface::~FastOS_ProcessInterface () = default;