aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/socket_linux.go
AgeCommit message (Collapse)AuthorFilesLines
2016-02-26re PR go/69966 (libgo: Port syscall.SetsockoptUcred from golang)Ian Lance Taylor1-0/+14
PR go/69966 syscall: Add new Getsockopt functions. Add GetsockoptICMPv6Filter, GetsockoptIPv6MTUInfo, GetsockoptUcred as appropriate. These functions exist in the master library. For GCC PR 69966. Reviewed-on: https://go-review.googlesource.com/19960 From-SVN: r233747
2015-08-03syscall: RawSockaddr fix for ppc64, ppc64leIan Lance Taylor1-5/+0
The struct RawSockaddr contains a field Data which should be uint8 on ppc64 and ppc64le, but is declared as int8 in gccgo. This change adds a two new files which contain the structure declaration for RawSockaddr, one with the correct types for for ppc64 and ppc64le, and the other for non-ppc64 platforms. Fixes golang/go#11469 Reviewed-on: https://go-review.googlesource.com/11946 From-SVN: r226533
2013-07-24net: Only use GNU/Linux unix socket abstract paths on GNU/Linux.Ian Lance Taylor1-0/+9
From-SVN: r201217
2012-11-24syscall: Fix handling of Unix domain @ addresses.Ian Lance Taylor1-1/+1
From-SVN: r193783
2012-11-02syscall, mksysinfo: Prepare syscall package for 64-bit int.Ian Lance Taylor1-13/+13
From-SVN: r193112
2012-01-13libgo: Update to weekly.2011-12-22.Ian Lance Taylor1-0/+3
From-SVN: r183150
2011-12-12libgo: Update to weekly.2011-11-18.Ian Lance Taylor1-13/+13
From-SVN: r182266
2011-11-01syscall: Portability code for epoll_event on GNU/Linux.Ian Lance Taylor1-9/+0
From-SVN: r180729
2011-10-26Update Go library to last weekly.Ian Lance Taylor1-2/+2
From-SVN: r180552
2011-10-23Implement new syscall package.Ian Lance Taylor1-0/+183
Calls to library functions now use entersyscall and exitsyscall as appropriate. This is a first step toward multiplexing goroutines onto threads. From-SVN: r180345