aboutsummaryrefslogtreecommitdiff
path: root/libgo/go
AgeCommit message (Collapse)AuthorFilesLines
2012-01-31syscall: Don't use PtraceRegs if it is not defined.Ian Lance Taylor4-40/+62
From-SVN: r183758
2012-01-30syscall: Support socket control messages.Ian Lance Taylor2-15/+19
From-SVN: r183745
2012-01-27syscall: Define IPV6 constants for Irix.Ian Lance Taylor1-0/+9
From Rainer Orth. From-SVN: r183652
2012-01-27libgo: Fix merge errors shown on Solaris.Ian Lance Taylor2-6/+5
From Rainer Orth. From-SVN: r183651
2012-01-25libgo: Update to weekly.2012-01-20.Ian Lance Taylor195-1782/+4876
From-SVN: r183540
2012-01-25libgo: Update to weekly.2012-01-15.Ian Lance Taylor177-3781/+7622
From-SVN: r183539
2012-01-23compiler: Give an error if a variable is defined but not used.Ian Lance Taylor3-13/+10
From-SVN: r183458
2012-01-13libgo: Only build iopl and ioperm on 386, amd64, alpha GNU/Linux.Ian Lance Taylor4-10/+43
From-SVN: r183171
2012-01-13libgo: Update to weekly.2011-12-22.Ian Lance Taylor182-1206/+3533
From-SVN: r183150
2012-01-12libgo: Update to weekly.2011-12-14.Ian Lance Taylor160-1640/+3413
From-SVN: r183118
2011-12-20syscall: Don't define IPMreq in socket_irix.go.Ian Lance Taylor1-40/+32
From Rainer Orth. From-SVN: r182549
2011-12-20libgo: Fix use of -D_GNU_SOURCE and friends when building libgo.Ian Lance Taylor1-3/+0
From-SVN: r182548
2011-12-16os: Fix fileInfoFromStat for Solaris.Ian Lance Taylor1-0/+56
From Rainer Orth. From-SVN: r182402
2011-12-15syscall: Move Errno into its own file, for RTEMS.Ian Lance Taylor2-22/+26
From-SVN: r182356
2011-12-14libgo: Update to weekly.2011-12-06.Ian Lance Taylor136-1307/+1417
From-SVN: r182338
2011-12-14runtime: Bump memory limit in gc_test.Ian Lance Taylor1-1/+1
From-SVN: r182332
2011-12-13runtime: Change gc_test to test only newly allocated memory.Ian Lance Taylor1-4/+12
From-SVN: r182315
2011-12-13syscall: Don't build wait status functions on RTEMS.Ian Lance Taylor1-3/+13
From-SVN: r182313
2011-12-13libgo: Solaris compatibility patches.Ian Lance Taylor2-3/+4
From Rainer Orth. From-SVN: r182296
2011-12-13libgo: Update to weekly.2011-12-02.Ian Lance Taylor226-4471/+6486
From-SVN: r182295
2011-12-12libgo: Update to weekly.2011-11-18.Ian Lance Taylor211-3929/+6000
From-SVN: r182266
2011-12-12net/http: delete temporary files.Ian Lance Taylor1-0/+3
From-SVN: r182256
2011-12-09syslog: Fix name of C syslog function.Ian Lance Taylor1-1/+1
From Rainer Orth. From-SVN: r182168
2011-12-07libgo: Add back tests of syscall time.Ian Lance Taylor2-9/+2
From-SVN: r182075
2011-12-07libgo: Remove debug/proc, os.Error.Ian Lance Taylor7-395/+3
From-SVN: r182074
2011-12-07libgo: Update to weekly 2011-11-09.Ian Lance Taylor373-1065/+3417
From-SVN: r182073
2011-12-06libgo: Remove more os.Error cases.Ian Lance Taylor3-16/+15
From Rainer Orth. From-SVN: r182060
2011-12-03libgo: Update to weekly.2011-11-02.Ian Lance Taylor482-4124/+3926
From-SVN: r181964
2011-12-02libgo: Update to weekly.2011-11-01.Ian Lance Taylor162-1558/+2180
From-SVN: r181938
2011-11-29libgo: update to weekly.2011-10-25Ian Lance Taylor36-3321/+4579
Changes were mainly straightforward to merge. From-SVN: r181824
2011-11-28runtime: Multiplex goroutines onto OS threads.Ian Lance Taylor1-5/+6
From-SVN: r181772
2011-11-02syscall: Remove Linux system calls not available in older glibcs.Ian Lance Taylor1-6/+9
From-SVN: r180784
2011-11-02exp/terminal: Use tcgetattr/tcsetattr rather than ioctl.Ian Lance Taylor2-8/+13
From-SVN: r180780
2011-11-01syscall: Portability code for epoll_event on GNU/Linux.Ian Lance Taylor1-9/+0
From-SVN: r180729
2011-10-31syscall: Fix Errstr on systems without strerror_r.Ian Lance Taylor1-2/+2
From-SVN: r180714
2011-10-31syscall: Remove a couple more 3-parameter match's in mksyscall.awk.Ian Lance Taylor1-2/+2
From-SVN: r180712
2011-10-27syscalls: Rewrite awk script to work with nawk.Ian Lance Taylor1-15/+45
From-SVN: r180559
2011-10-26Update Go library to last weekly.Ian Lance Taylor494-12110/+42089
From-SVN: r180552
2011-10-25Solaris/Irix compatibility patches.Ian Lance Taylor9-6/+49
From-SVN: r180440
2011-10-25Fix Solaris build.Ian Lance Taylor1-1/+1
From Rainer Orth. From-SVN: r180439
2011-10-24Error if naked return when result variables are shadowed.Ian Lance Taylor3-18/+23
From-SVN: r180401
2011-10-24Some minor fixes to the rewritten syscall library.Ian Lance Taylor2-6/+8
From-SVN: r180363
2011-10-23Implement new syscall package.Ian Lance Taylor44-14/+4386
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-10-22Update Go library to r60.3 release.Ian Lance Taylor11-1561/+277
From-SVN: r180327
2011-09-22Update Go library to release r60.1.Ian Lance Taylor13-23/+743
From-SVN: r179076
2011-09-22Add html/testdata files accidentally omitted.Ian Lance Taylor23-0/+5051
From-SVN: r179075
2011-09-16Update Go library to r60.Ian Lance Taylor680-29718/+56764
From-SVN: r178910
2011-07-06json: fix test when rand returns 0.Ian Lance Taylor1-0/+3
Fixes using gccgo when optimizing, which changes the order of calls to rand. Same patch proposed upstream. From-SVN: r175927
2011-05-31os: Correct Ctime_ns calculation.Ian Lance Taylor1-1/+1
From-SVN: r174501
2011-05-25re PR go/48502 (os_test.TestStartProcess FAILs on Solaris 2)Ian Lance Taylor1-1/+2
PR go/48502 libgo/os: Fix test to run on Solaris. Patch brought over from upstream library. From-SVN: r174167