修复arm64下无法调用syscall.Dup2的问题

This commit is contained in:
GoEdgeLab
2021-10-30 22:34:40 +08:00
parent 8fe5a7dd10
commit a3b5bbf4e7
3 changed files with 56 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
//go:build arm64
// +build arm64
package nodes
// 处理异常
func (this *Node) handlePanic() {
return
}