aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/clone_linux.c
AgeCommit message (Collapse)AuthorFilesLines
2016-10-13syscall: don't use pt_regs in clone_linux.cIan Lance Taylor1-3/+2
It's unnecessary and it reportedly breaks the build on arm64 GNU/Linux. Reviewed-on: https://go-review.googlesource.com/30978 From-SVN: r241084
2016-10-12syscall: mark rawClone as no_split_stackIan Lance Taylor1-1/+4
Reviewed-on: https://go-review.googlesource.com/30955 From-SVN: r241072
2016-10-12syscall, internal/syscall/unix: Fix getrandom, clone on sparc64Ian Lance Taylor1-0/+100
Since sparc is a valid architecture, the name of getrandom_linux_sparc.go means that it will be ignored on sparc64, even though it's whitelisted with a +build line. On SPARC, clone has a unique return value convention which requires some inline assembly to convert it to the normal convention. Reviewed-on: https://go-review.googlesource.com/30873 From-SVN: r241051