mirror of
https://github.com/rclone/rclone.git
synced 2024-11-30 04:15:26 +01:00
12 lines
254 B
Go
12 lines
254 B
Go
|
// +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)
|
||
|
}
|