aboutsummaryrefslogtreecommitdiff
path: root/libgo
AgeCommit message (Collapse)AuthorFilesLines
2011-12-07libgo: Update to weekly 2011-11-09.Ian Lance Taylor378-2331/+4913
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 Taylor487-4191/+4020
From-SVN: r181964
2011-12-03libgo: Generate dependencies automatically.Ian Lance Taylor6-598/+1308
From-SVN: r181955
2011-12-02libgo: Update to weekly.2011-11-01.Ian Lance Taylor168-1605/+2239
From-SVN: r181938
2011-12-02merge.sh: Add files, add revision option, handle middle dot.Ian Lance Taylor1-9/+35
From-SVN: r181937
2011-12-01runtime: Remove temporary runtime_cond_wait function.Ian Lance Taylor2-27/+0
From-SVN: r181897
2011-12-01runtime: Rename sigignore to sig_ignore for Solaris.Ian Lance Taylor1-2/+2
From-SVN: r181885
2011-12-01compiler/runtime: Copy channel implementation from master library.Ian Lance Taylor20-2384/+1280
From-SVN: r181874
2011-11-30runtime: Copy runtime_panicstring from master library.Ian Lance Taylor31-92/+83
From-SVN: r181830
2011-11-29libgo: update to weekly.2011-10-25Ian Lance Taylor39-3367/+4628
Changes were mainly straightforward to merge. From-SVN: r181824
2011-11-29runtime: If no sem_timedwait, use pthread_cond_timedwait.Ian Lance Taylor5-11/+114
From-SVN: r181821
2011-11-29runtime: If O_CLOEXEC is not defined, define it as 0.Ian Lance Taylor1-0/+4
From-SVN: r181814
2011-11-28runtime: Multiplex goroutines onto OS threads.Ian Lance Taylor38-1235/+2065
From-SVN: r181772
2011-11-22runtime: New lock/note implementation.Ian Lance Taylor21-293/+705
From-SVN: r181633
2011-11-14runtime: Use some of 6g runtime.c for easier merging.Ian Lance Taylor9-74/+257
From-SVN: r181368
2011-11-11Introduce G structure and thread-local global g.Ian Lance Taylor14-133/+102
From-SVN: r181301
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-02libgo/Makefile: Fix dependency.Ian Lance Taylor2-2/+2
From-SVN: r180778
2011-11-01runtime: Don't ask mmap for wrapping memory.Ian Lance Taylor1-0/+2
From-SVN: r180732
2011-11-01runtime: Correct test of mmap return value.Ian Lance Taylor1-1/+6
From-SVN: r180731
2011-11-01syscall: Portability code for epoll_event on GNU/Linux.Ian Lance Taylor6-13/+301
From-SVN: r180729
2011-10-31syscall: Use sched_yield rather than pthread_yield.Ian Lance Taylor1-2/+2
From-SVN: r180716
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 Taylor535-12846/+43662
From-SVN: r180552
2011-10-25Solaris/Irix compatibility patches.Ian Lance Taylor9-6/+49
From-SVN: r180440
2011-10-25Fix Solaris build.Ian Lance Taylor2-2/+2
From Rainer Orth. From-SVN: r180439
2011-10-25Implement predeclared delete function.Ian Lance Taylor2-1/+7
From-SVN: r180438
2011-10-25Don't permit close of receive-only channel.Ian Lance Taylor1-0/+3
Better panic on attempt to close nil channel. From-SVN: r180437
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 Taylor74-2053/+3554
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 Taylor14-1608/+288
From-SVN: r180327
2011-09-28mksysinfo: #include <ttold.h> on Irix.Ian Lance Taylor1-1/+4
From Rainer Orth. From-SVN: r179312
2011-09-27mksysinfo: Fix for systems that don't define TIOCSCTTY.Ian Lance Taylor1-0/+8
From Rainer Orth. From-SVN: r179269
2011-09-26Pass $(MATH_LIBS) $(NET_LIBS) when linking tests.Ian Lance Taylor3-1/+5
From-SVN: r179219
2011-09-26Fix sysinfo.go on systems which don't need to import "unsafe".Ian Lance Taylor1-0/+1
From-SVN: r179216
2011-09-23Include <termios.h> in mksysinfo.sh.Ian Lance Taylor1-0/+1
From Rainer Orth. From-SVN: r179120
2011-09-22Update Go library to release r60.1.Ian Lance Taylor17-27/+749
From-SVN: r179076
2011-09-22Add html/testdata files accidentally omitted.Ian Lance Taylor23-0/+5051
From-SVN: r179075
2011-09-21Increase default libgo test timeout.Ian Lance Taylor1-1/+1
From-SVN: r179062
2011-09-21Support nil maps.Ian Lance Taylor3-5/+18
From-SVN: r179054
2011-09-21Fix channels with element type of size zero.Ian Lance Taylor1-1/+1
From-SVN: r179030
2011-09-20Fix calling make with slice whose element type is size zero.Ian Lance Taylor1-1/+2
From-SVN: r179019
2011-09-20Implement goto restrictions.Ian Lance Taylor1-9/+12
From-SVN: r179018
2011-09-16Block forever on send/receive to/from nil channel.Ian Lance Taylor11-16/+47
From-SVN: r178920
2011-09-16Update Go library to r60.Ian Lance Taylor713-30293/+58730
From-SVN: r178910