blob: e328f078013fa2fb5e920525b70f665b32d793ca [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// +build !linux
package codifier
import (
"os/exec"
)
// Ensure all child processes are terminated when the parent exits.
func terminateChildProcessesAutomatically(cmd *exec.Cmd) {}
// Terminate the parent and all child processes.
func terminateProcessesGroup(cmd *exec.Cmd) error { return nil }