forked from TrueCloudLab/rclone
added dependency github.com/sevlyar/go-daemon
This commit is contained in:
parent
fe8eeec5b5
commit
90af7af9a3
39 changed files with 2377 additions and 137 deletions
11
vendor/github.com/sevlyar/go-daemon/syscall_dup_arm64.go
generated
vendored
Normal file
11
vendor/github.com/sevlyar/go-daemon/syscall_dup_arm64.go
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
// +build linux,arm64
|
||||
|
||||
package daemon
|
||||
|
||||
import "syscall"
|
||||
|
||||
func syscallDup(oldfd int, newfd int) (err error) {
|
||||
// linux_arm64 platform doesn't have syscall.Dup2
|
||||
// so use the nearly identical syscall.Dup3 instead.
|
||||
return syscall.Dup3(oldfd, newfd, 0)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue