mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 20:04:52 +01:00
20 lines
371 B
Go
20 lines
371 B
Go
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!plan9,!solaris
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func (d *Context) reborn() (child *os.Process, err error) {
|
|
return nil, errNotSupported
|
|
}
|
|
|
|
func (d *Context) search() (daemon *os.Process, err error) {
|
|
return nil, errNotSupported
|
|
}
|
|
|
|
func (d *Context) release() (err error) {
|
|
return nil, errNotSupported
|
|
}
|