2023-03-02 15:37:05 -05:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-10 15:53:29 -07:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-02 15:37:05 -05:00
|
|
|
|
2019-09-18 10:51:57 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
|
|
|
|
)
|
|
|
|
|
|
2019-09-18 10:54:35 -07:00
|
|
|
func checkProcess(currentPID int) (bool, error) {
|
2019-09-18 10:51:57 -07:00
|
|
|
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
|
|
|
|
|
"openbsd")
|
|
|
|
|
}
|