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