aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/net
AgeCommit message (Collapse)AuthorFilesLines
2012-04-03syscall, net: Fix GNU/Linux netlink code for big-endian systems.Ian Lance Taylor1-2/+11
From-SVN: r186123
2012-03-30libgo: Update to weekly.2012-03-27 aka go1 release.Ian Lance Taylor1-0/+4
From-SVN: r186029
2012-03-30libgo: Update to weekly.2012-03-22.Ian Lance Taylor5-40/+31
From-SVN: r186026
2012-03-30libgo: Update to weekly.2012-03-13.Ian Lance Taylor36-469/+1482
From-SVN: r186023
2012-03-13libgo: Export {enter,exit}syscall and use it for getaddrinfo.Ian Lance Taylor1-1/+6
From-SVN: r185363
2012-03-07libgo: Implement and use runtime.Caller, runtime.Func.FileLine.Ian Lance Taylor2-0/+2
From-SVN: r185025
2012-03-06libgo: Update to weekly.2012-03-04 release.Ian Lance Taylor30-290/+471
From-SVN: r185010
2012-03-02libgo: Update to weekly.2012-02-22 release.Ian Lance Taylor46-379/+788
From-SVN: r184819
2012-03-02libgo: Update to weekly.2012-02-14 release.Ian Lance Taylor40-404/+1041
From-SVN: r184798
2012-02-14net: Don't run UDP multicast tests on Alpha GNU/Linux.Ian Lance Taylor1-1/+1
From Uros Bizjak. From-SVN: r184187
2012-02-09libgo: Update to weekly.2012-02-07.Ian Lance Taylor56-589/+756
From-SVN: r184034
2012-02-07compiler, libgo: Use //extern comments rather than __asm__.Ian Lance Taylor1-3/+8
From-SVN: r183981
2012-02-01libgo: Update to weekly.2012-01-27.Ian Lance Taylor28-514/+696
From-SVN: r183810
2012-01-25libgo: Update to weekly.2012-01-20.Ian Lance Taylor46-807/+891
From-SVN: r183540
2012-01-25libgo: Update to weekly.2012-01-15.Ian Lance Taylor31-278/+1285
From-SVN: r183539
2012-01-13libgo: Update to weekly.2011-12-22.Ian Lance Taylor35-161/+514
From-SVN: r183150
2012-01-12libgo: Update to weekly.2011-12-14.Ian Lance Taylor11-38/+69
From-SVN: r183118
2011-12-14libgo: Update to weekly.2011-12-06.Ian Lance Taylor15-97/+45
From-SVN: r182338
2011-12-13libgo: Solaris compatibility patches.Ian Lance Taylor1-2/+3
From Rainer Orth. From-SVN: r182296
2011-12-13libgo: Update to weekly.2011-12-02.Ian Lance Taylor22-99/+104
From-SVN: r182295
2011-12-12libgo: Update to weekly.2011-11-18.Ian Lance Taylor43-467/+796
From-SVN: r182266
2011-12-12net/http: delete temporary files.Ian Lance Taylor1-0/+3
From-SVN: r182256
2011-12-07libgo: Remove debug/proc, os.Error.Ian Lance Taylor1-2/+2
From-SVN: r182074
2011-12-07libgo: Update to weekly 2011-11-09.Ian Lance Taylor80-20/+18353
From-SVN: r182073
2011-12-06libgo: Remove more os.Error cases.Ian Lance Taylor1-10/+10
From Rainer Orth. From-SVN: r182060
2011-12-03libgo: Update to weekly.2011-11-02.Ian Lance Taylor62-512/+466
From-SVN: r181964
2011-12-02libgo: Update to weekly.2011-11-01.Ian Lance Taylor8-6/+82
From-SVN: r181938
2011-11-29libgo: update to weekly.2011-10-25Ian Lance Taylor1-3/+0
Changes were mainly straightforward to merge. From-SVN: r181824
2011-10-26Update Go library to last weekly.Ian Lance Taylor42-348/+1110
From-SVN: r180552
2011-10-23Implement new syscall package.Ian Lance Taylor2-11/+22
Calls to library functions now use entersyscall and exitsyscall as appropriate. This is a first step toward multiplexing goroutines onto threads. From-SVN: r180345
2011-09-16Update Go library to r60.Ian Lance Taylor59-2081/+4768
From-SVN: r178910
2011-05-24libgo: Solaris/Irix portability fixes.Ian Lance Taylor1-1/+1
From Rainer Orth. From-SVN: r174144
2011-05-20Update to current version of Go library.Ian Lance Taylor28-181/+709
From-SVN: r173931
2011-04-07libgo: Update to current Go library.Ian Lance Taylor4-12/+37
From-SVN: r172106
2011-03-31libgo: Remove unnecessary EINTR checks.Ian Lance Taylor1-7/+7
We always use SA_RESTART with signals, so read/write/etc. should never return EINTR. From-SVN: r171802
2011-03-30Update to current Go library.Ian Lance Taylor24-172/+681
From-SVN: r171732
2011-03-28re PR go/48312 (http, rpc, websocket tests hang on Solaris 2/x86)Ian Lance Taylor5-9/+20
PR go/48312 Fix fd_select.go for changes in FD handling. We have to wake up the goroutine waiting in select each time we change the set of descriptors we are waiting for, unlike epoll. From-SVN: r171623
2011-03-28Rename net/fd_rtems.go to net/fd_select.go.Ian Lance Taylor1-0/+0
From-SVN: r171621
2011-03-24Update to current version of Go library.Ian Lance Taylor3-74/+187
From-SVN: r171427
2011-03-16Update to current version of Go library (revision 94d654be2064).Ian Lance Taylor14-417/+544
From-SVN: r171076
2011-03-09re PR go/48019 (Need to handle EINTR in libgo testsuite)Ian Lance Taylor1-0/+3
PR go/48019 Ignore EINTR in socket connect. From-SVN: r170811
2011-03-07Solaris libgo testsuite fixes.Ian Lance Taylor1-2/+0
From-SVN: r170762
2011-01-26net: Check for EINTR.Ian Lance Taylor1-7/+7
From-SVN: r169309
2011-01-26Update some net tests from master sources.Ian Lance Taylor2-13/+37
From-SVN: r169298
2011-01-21Fix race condition in test case.Ian Lance Taylor1-7/+7
Brought over from master repository. From-SVN: r169106
2011-01-21Remove the types float and complex.Ian Lance Taylor16-100/+548
Update to current version of Go library. Update testsuite for removed types. * go-lang.c (go_langhook_init): Omit float_type_size when calling go_create_gogo. * go-c.h: Update declaration of go_create_gogo. From-SVN: r169098
2010-12-08Fix test by copying from master.Ian Lance Taylor1-1/+1
From-SVN: r167575
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor43-0/+7796
gcc/: * gcc.c (default_compilers): Add entry for ".go". * common.opt: Add -static-libgo as a driver option. * doc/install.texi (Configuration): Mention libgo as an option for --enable-shared. Mention go as an option for --enable-languages. * doc/invoke.texi (Overall Options): Mention .go as a file name suffix. Mention go as a -x option. * doc/frontends.texi (G++ and GCC): Mention Go as a supported language. * doc/sourcebuild.texi (Top Level): Mention libgo. * doc/standards.texi (Standards): Add section on Go language. Move references for other languages into their own section. * doc/contrib.texi (Contributors): Mention that I contributed the Go frontend. gcc/testsuite/: * lib/go.exp: New file. * lib/go-dg.exp: New file. * lib/go-torture.exp: New file. * lib/target-supports.exp (check_compile): Match // Go. From-SVN: r167407