// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "sandbox/linux/services/init_process_reaper.h" #include <signal.h> #include <string.h> #include <sys/socket.h> #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include "base/functional/callback.h" #include "base/logging.h" #include "base/posix/eintr_wrapper.h" namespace sandbox { namespace { void DoNothingSignalHandler(int signal) { … } } // namespace bool CreateInitProcessReaper(base::OnceClosure post_fork_parent_callback) { … } } // namespace sandbox.