mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
syscall: regenerate syscall/z* files for linux/386, linux/amd64
DISTRIB_DESCRIPTION="Ubuntu 10.04 LTS" Use <sys/user.h> instead of <linux/user.h> See http://gcc.gnu.org/ml/gcc-patches/2009-11/msg00834.html for more details. R=imkrasin, rsc CC=golang-dev https://golang.org/cl/1957041
This commit is contained in:
parent
3dc3ef4cf7
commit
5a0274399a
12 changed files with 145 additions and 64 deletions
|
|
@ -369,7 +369,7 @@ func Socket(domain, typ, proto int) (fd, errno int) {
|
|||
}
|
||||
|
||||
func Socketpair(domain, typ, proto int) (fd [2]int, errno int) {
|
||||
fd, errno = socketpair(domain, typ, proto)
|
||||
errno = socketpair(domain, typ, proto, &fd)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue