2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-01-05 18:02:03 +00:00
|
|
|
//go:build windows
|
2019-03-15 17:12:48 +00:00
|
|
|
|
|
|
|
package command
|
|
|
|
|
|
|
|
// MakeSigUSR2Ch does nothing useful on Windows.
|
|
|
|
func MakeSigUSR2Ch() chan struct{} {
|
|
|
|
return make(chan struct{})
|
|
|
|
}
|