2023-11-29 16:11:11 +01:00
|
|
|
//go:build !unix
|
2021-08-18 13:07:09 +02:00
|
|
|
|
2022-08-28 13:21:57 +02:00
|
|
|
// Package daemonize provides daemonization stub for non-Unix platforms.
|
2021-08-18 13:07:09 +02:00
|
|
|
package daemonize
|
|
|
|
|
|
|
|
import (
|
2021-11-04 11:12:57 +01:00
|
|
|
"fmt"
|
2021-08-18 13:07:09 +02:00
|
|
|
"os"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2023-11-29 16:11:11 +01:00
|
|
|
var errNotSupported = fmt.Errorf("daemon mode is not supported on the %s platform", runtime.GOOS)
|
|
|
|
|
2021-08-18 13:07:09 +02:00
|
|
|
// StartDaemon runs background twin of current process.
|
|
|
|
func StartDaemon(args []string) (*os.Process, error) {
|
2023-11-29 16:11:11 +01:00
|
|
|
return nil, errNotSupported
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check returns non nil if the daemon process has died
|
|
|
|
func Check(daemon *os.Process) error {
|
|
|
|
return errNotSupported
|
2021-08-18 13:07:09 +02:00
|
|
|
}
|