Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-10-13 | syscall: don't use pt_regs in clone_linux.c | Ian Lance Taylor | 1 | -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-12 | syscall: mark rawClone as no_split_stack | Ian Lance Taylor | 1 | -1/+4 | |
Reviewed-on: https://go-review.googlesource.com/30955 From-SVN: r241072 | |||||
2016-10-12 | syscall, internal/syscall/unix: Fix getrandom, clone on sparc64 | Ian Lance Taylor | 1 | -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 |