xmtop/src/logging/logging_other.go

13 lines
133 B
Go
Raw Normal View History

2018-12-13 10:18:43 +08:00
// +build !arm64
package logging
import (
"os"
"syscall"
)
func StderrToLogfile(lf *os.File) {
syscall.Dup2(int(lf.Fd()), 2)
}