chromium/third_party/crashpad/crashpad/test/multiprocess_posix.cc

// Copyright 2014 The Crashpad Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "test/multiprocess.h"

#include <signal.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <unistd.h>

#include <memory>
#include <string>

#include "base/auto_reset.h"
#include "base/check_op.h"
#include "base/files/scoped_file.h"
#include "base/posix/eintr_wrapper.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "gtest/gtest.h"
#include "test/errors.h"
#include "util/misc/scoped_forbid_return.h"
#include "util/posix/signals.h"

#if BUILDFLAG(IS_APPLE)
#include "test/mac/exception_swallower.h"
#endif

namespace crashpad {
namespace test {

namespace internal {

struct MultiprocessInfo {};

}  // namespace internal

Multiprocess::Multiprocess()
    :{}

void Multiprocess::Run() {}

void Multiprocess::SetExpectedChildTermination(TerminationReason reason,
                                               ReturnCodeType code) {}

void Multiprocess::SetExpectedChildTerminationBuiltinTrap() {}

Multiprocess::~Multiprocess() {}

void Multiprocess::PreFork() {}

pid_t Multiprocess::ChildPID() const {}

FileHandle Multiprocess::ReadPipeHandle() const {}

FileHandle Multiprocess::WritePipeHandle() const {}

void Multiprocess::CloseReadPipe() {}

void Multiprocess::CloseWritePipe() {}

void Multiprocess::RunParent() {}

void Multiprocess::RunChild() {}

}  // namespace test
}  // namespace crashpad