11 lines
176 B
Go
11 lines
176 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func checkProcess(currentPID int) (bool, error) {
|
|
return false, fmt.Errorf("cannot determine if process is backgrounded in " +
|
|
"openbsd")
|
|
}
|