aboutsummaryrefslogtreecommitdiff
path: root/src/syscall/syscall_linux_ppc64x.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/syscall_linux_ppc64x.go')
-rw-r--r--src/syscall/syscall_linux_ppc64x.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/syscall/syscall_linux_ppc64x.go b/src/syscall/syscall_linux_ppc64x.go
index 307abc9f53..53086f9034 100644
--- a/src/syscall/syscall_linux_ppc64x.go
+++ b/src/syscall/syscall_linux_ppc64x.go
@@ -115,3 +115,7 @@ func (msghdr *Msghdr) SetControllen(length int) {
func (cmsg *Cmsghdr) SetLen(length int) {
cmsg.Len = uint64(length)
}
+
+func rawVforkSyscall(trap, a1 uintptr) (r1 uintptr, err Errno) {
+ panic("not implemented")
+}