微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

golang 守护进程(daemon)

package main
 
import (
    "fmt"
    "log"
    "os"
    "runtime"
    "syscall"
    "time"
)
 
func daemon(nochdir,noclose int) int {
    var ret,ret2 uintptr
    var err syscall.Errno
 
    darwin := runtime.GOOS == "darwin"
 
    // already a daemon
    if syscall.Getppid() == 1 {
        return 0
    }
 
    // fork off the parent process
    ret,ret2,err = syscall.RawSyscall(syscall.SYS_FORK,0)
    if err != 0 {
        return -1
    }
 
    // failure
    if ret2 < 0 {
        os.Exit(-1)
    }
 
    // handle exception for darwin
    if darwin && ret2 == 1 {
        ret = 0
    }
 
    // if we got a good PID,then we call exit the parent process.
    if ret > 0 {
        os.Exit(0)
    }
 
    /* Change the file mode mask */
    _ = syscall.Umask(0)
 
    // create a new SID for the child process
    s_ret,s_errno := syscall.Setsid()
    if s_errno != nil {
        log.Printf("Error: syscall.Setsid errno: %d",s_errno)
    }
    if s_ret < 0 {
        return -1
    }
 
    if nochdir == 0 {
        os.Chdir("/")
    }
 
    if noclose == 0 {
        f,e := os.OpenFile("/dev/null",os.O_RDWR,0)
        if e == nil {
            fd := f.Fd()
            syscall.Dup2(int(fd),int(os.Stdin.Fd()))
            syscall.Dup2(int(fd),int(os.Stdout.Fd()))
            syscall.Dup2(int(fd),int(os.Stderr.Fd()))
        }
    }
 
    return 0
}
 
func main() {
    daemon(0,1)
    for {
        fmt.Println("hello")
        time.Sleep(1 * time.Second)
    }
 
}

原文地址:https://www.jb51.cc/go/190621.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐