aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/socket.go
AgeCommit message (Collapse)AuthorFilesLines
2022-02-11libgo: update to Go1.18beta2Ian Lance Taylor1-22/+128
gotools/ * Makefile.am (go_cmd_cgo_files): Add ast_go118.go (check-go-tool): Copy golang.org/x/tools directories. * Makefile.in: Regenerate. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/384695
2019-09-06libgo: update to Go 1.13beta1 releaseIan Lance Taylor1-1/+5
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/193497 From-SVN: r275473
2018-01-09libgo: update to Go1.10beta1Ian Lance Taylor1-3/+18
Update the Go library to the 1.10beta1 release. Requires a few changes to the compiler for modifications to the map runtime code, and to handle some nowritebarrier cases in the runtime. Reviewed-on: https://go-review.googlesource.com/86455 gotools/: * Makefile.am (go_cmd_vet_files): New variable. (go_cmd_buildid_files, go_cmd_test2json_files): New variables. (s-zdefaultcc): Change from constants to functions. (noinst_PROGRAMS): Add vet, buildid, and test2json. (cgo$(EXEEXT)): Link against $(LIBGOTOOL). (vet$(EXEEXT)): New target. (buildid$(EXEEXT)): New target. (test2json$(EXEEXT)): New target. (install-exec-local): Install all $(noinst_PROGRAMS). (uninstall-local): Uninstasll all $(noinst_PROGRAMS). (check-go-tool): Depend on $(noinst_PROGRAMS). Copy down objabi.go. (check-runtime): Depend on $(noinst_PROGRAMS). (check-cgo-test, check-carchive-test): Likewise. (check-vet): New target. (check): Depend on check-vet. Look at cmd_vet-testlog. (.PHONY): Add check-vet. * Makefile.in: Rebuild. From-SVN: r256365
2016-02-26re PR go/69966 (libgo: Port syscall.SetsockoptUcred from golang)Ian Lance Taylor1-0/+7
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
2014-07-19libgo: Update to Go 1.3 release.Ian Lance Taylor1-4/+12
From-SVN: r212837
2014-06-06libgo: Merge to master revision 19184.Ian Lance Taylor1-17/+17
The next revision, 19185, renames several runtime files, and will be handled in a separate change. From-SVN: r211328
2013-11-25syscall: Set SizeofSockaddrAny to the value the go distribution usesIan Lance Taylor1-1/+1
In particular this means that the names Getsockname returns are not truncated to 26 characters. Fixes issue 6829 https://codereview.appspot.com/31840043/ From-SVN: r205368
2013-11-06libgo: Update to October 24 version of master library.Ian Lance Taylor1-0/+4
From-SVN: r204466
2013-07-24net: Only use GNU/Linux unix socket abstract paths on GNU/Linux.Ian Lance Taylor1-5/+1
From-SVN: r201217
2013-07-16libgo: Update to Go 1.1.1.Ian Lance Taylor1-3/+8
From-SVN: r200974
2013-02-20re PR go/56171 (syscall FAILs on Solaris)Ian Lance Taylor1-24/+0
PR go/56171 syscall: Solaris fixes for passing file descriptor. From Rainer Orth. From-SVN: r196180
2012-11-24syscall: Fix handling of Unix domain @ addresses.Ian Lance Taylor1-1/+5
From-SVN: r193783
2012-11-02syscall, mksysinfo: Prepare syscall package for 64-bit int.Ian Lance Taylor1-17/+22
From-SVN: r193112
2012-04-22mksysinfo: More fixes to emulate master Go library.Ian Lance Taylor1-1/+1
From-SVN: r186685
2012-03-06libgo: Update to weekly.2012-03-04 release.Ian Lance Taylor1-0/+12
From-SVN: r185010
2012-01-30syscall: Support socket control messages.Ian Lance Taylor1-12/+16
From-SVN: r183745
2012-01-25libgo: Update to weekly.2012-01-15.Ian Lance Taylor1-12/+0
From-SVN: r183539
2011-12-12libgo: Update to weekly.2011-11-18.Ian Lance Taylor1-91/+91
From-SVN: r182266
2011-10-26Update Go library to last weekly.Ian Lance Taylor1-4/+0
From-SVN: r180552
2011-10-23Implement new syscall package.Ian Lance Taylor1-0/+423
Calls to library functions now use entersyscall and exitsyscall as appropriate. This is a first step toward multiplexing goroutines onto threads. From-SVN: r180345