Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-12-07 | libgo: Add back tests of syscall time. | Ian Lance Taylor | 3 | -9/+33 | |
From-SVN: r182075 | |||||
2011-12-07 | libgo: Remove debug/proc, os.Error. | Ian Lance Taylor | 7 | -395/+3 | |
From-SVN: r182074 | |||||
2011-12-07 | libgo: Update to weekly 2011-11-09. | Ian Lance Taylor | 378 | -2331/+4913 | |
From-SVN: r182073 | |||||
2011-12-06 | libgo: Remove more os.Error cases. | Ian Lance Taylor | 3 | -16/+15 | |
From Rainer Orth. From-SVN: r182060 | |||||
2011-12-03 | libgo: Update to weekly.2011-11-02. | Ian Lance Taylor | 487 | -4191/+4020 | |
From-SVN: r181964 | |||||
2011-12-03 | libgo: Generate dependencies automatically. | Ian Lance Taylor | 6 | -598/+1308 | |
From-SVN: r181955 | |||||
2011-12-02 | libgo: Update to weekly.2011-11-01. | Ian Lance Taylor | 168 | -1605/+2239 | |
From-SVN: r181938 | |||||
2011-12-02 | merge.sh: Add files, add revision option, handle middle dot. | Ian Lance Taylor | 1 | -9/+35 | |
From-SVN: r181937 | |||||
2011-12-01 | runtime: Remove temporary runtime_cond_wait function. | Ian Lance Taylor | 2 | -27/+0 | |
From-SVN: r181897 | |||||
2011-12-01 | runtime: Rename sigignore to sig_ignore for Solaris. | Ian Lance Taylor | 1 | -2/+2 | |
From-SVN: r181885 | |||||
2011-12-01 | compiler/runtime: Copy channel implementation from master library. | Ian Lance Taylor | 20 | -2384/+1280 | |
From-SVN: r181874 | |||||
2011-11-30 | runtime: Copy runtime_panicstring from master library. | Ian Lance Taylor | 31 | -92/+83 | |
From-SVN: r181830 | |||||
2011-11-29 | libgo: update to weekly.2011-10-25 | Ian Lance Taylor | 39 | -3367/+4628 | |
Changes were mainly straightforward to merge. From-SVN: r181824 | |||||
2011-11-29 | runtime: If no sem_timedwait, use pthread_cond_timedwait. | Ian Lance Taylor | 5 | -11/+114 | |
From-SVN: r181821 | |||||
2011-11-29 | runtime: If O_CLOEXEC is not defined, define it as 0. | Ian Lance Taylor | 1 | -0/+4 | |
From-SVN: r181814 | |||||
2011-11-28 | runtime: Multiplex goroutines onto OS threads. | Ian Lance Taylor | 38 | -1235/+2065 | |
From-SVN: r181772 | |||||
2011-11-22 | runtime: New lock/note implementation. | Ian Lance Taylor | 21 | -293/+705 | |
From-SVN: r181633 | |||||
2011-11-14 | runtime: Use some of 6g runtime.c for easier merging. | Ian Lance Taylor | 9 | -74/+257 | |
From-SVN: r181368 | |||||
2011-11-11 | Introduce G structure and thread-local global g. | Ian Lance Taylor | 14 | -133/+102 | |
From-SVN: r181301 | |||||
2011-11-02 | syscall: Remove Linux system calls not available in older glibcs. | Ian Lance Taylor | 1 | -6/+9 | |
From-SVN: r180784 | |||||
2011-11-02 | exp/terminal: Use tcgetattr/tcsetattr rather than ioctl. | Ian Lance Taylor | 2 | -8/+13 | |
From-SVN: r180780 | |||||
2011-11-02 | libgo/Makefile: Fix dependency. | Ian Lance Taylor | 2 | -2/+2 | |
From-SVN: r180778 | |||||
2011-11-01 | runtime: Don't ask mmap for wrapping memory. | Ian Lance Taylor | 1 | -0/+2 | |
From-SVN: r180732 | |||||
2011-11-01 | runtime: Correct test of mmap return value. | Ian Lance Taylor | 1 | -1/+6 | |
From-SVN: r180731 | |||||
2011-11-01 | syscall: Portability code for epoll_event on GNU/Linux. | Ian Lance Taylor | 6 | -13/+301 | |
From-SVN: r180729 | |||||
2011-10-31 | syscall: Use sched_yield rather than pthread_yield. | Ian Lance Taylor | 1 | -2/+2 | |
From-SVN: r180716 | |||||
2011-10-31 | syscall: Fix Errstr on systems without strerror_r. | Ian Lance Taylor | 1 | -2/+2 | |
From-SVN: r180714 | |||||
2011-10-31 | syscall: Remove a couple more 3-parameter match's in mksyscall.awk. | Ian Lance Taylor | 1 | -2/+2 | |
From-SVN: r180712 | |||||
2011-10-27 | syscalls: Rewrite awk script to work with nawk. | Ian Lance Taylor | 1 | -15/+45 | |
From-SVN: r180559 | |||||
2011-10-26 | Update Go library to last weekly. | Ian Lance Taylor | 535 | -12846/+43662 | |
From-SVN: r180552 | |||||
2011-10-25 | Solaris/Irix compatibility patches. | Ian Lance Taylor | 9 | -6/+49 | |
From-SVN: r180440 | |||||
2011-10-25 | Fix Solaris build. | Ian Lance Taylor | 2 | -2/+2 | |
From Rainer Orth. From-SVN: r180439 | |||||
2011-10-25 | Implement predeclared delete function. | Ian Lance Taylor | 2 | -1/+7 | |
From-SVN: r180438 | |||||
2011-10-25 | Don't permit close of receive-only channel. | Ian Lance Taylor | 1 | -0/+3 | |
Better panic on attempt to close nil channel. From-SVN: r180437 | |||||
2011-10-24 | Error if naked return when result variables are shadowed. | Ian Lance Taylor | 3 | -18/+23 | |
From-SVN: r180401 | |||||
2011-10-24 | Some minor fixes to the rewritten syscall library. | Ian Lance Taylor | 2 | -6/+8 | |
From-SVN: r180363 | |||||
2011-10-23 | Implement new syscall package. | Ian Lance Taylor | 74 | -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-22 | Update Go library to r60.3 release. | Ian Lance Taylor | 14 | -1608/+288 | |
From-SVN: r180327 | |||||
2011-09-28 | mksysinfo: #include <ttold.h> on Irix. | Ian Lance Taylor | 1 | -1/+4 | |
From Rainer Orth. From-SVN: r179312 | |||||
2011-09-27 | mksysinfo: Fix for systems that don't define TIOCSCTTY. | Ian Lance Taylor | 1 | -0/+8 | |
From Rainer Orth. From-SVN: r179269 | |||||
2011-09-26 | Pass $(MATH_LIBS) $(NET_LIBS) when linking tests. | Ian Lance Taylor | 3 | -1/+5 | |
From-SVN: r179219 | |||||
2011-09-26 | Fix sysinfo.go on systems which don't need to import "unsafe". | Ian Lance Taylor | 1 | -0/+1 | |
From-SVN: r179216 | |||||
2011-09-23 | Include <termios.h> in mksysinfo.sh. | Ian Lance Taylor | 1 | -0/+1 | |
From Rainer Orth. From-SVN: r179120 | |||||
2011-09-22 | Update Go library to release r60.1. | Ian Lance Taylor | 17 | -27/+749 | |
From-SVN: r179076 | |||||
2011-09-22 | Add html/testdata files accidentally omitted. | Ian Lance Taylor | 23 | -0/+5051 | |
From-SVN: r179075 | |||||
2011-09-21 | Increase default libgo test timeout. | Ian Lance Taylor | 1 | -1/+1 | |
From-SVN: r179062 | |||||
2011-09-21 | Support nil maps. | Ian Lance Taylor | 3 | -5/+18 | |
From-SVN: r179054 | |||||
2011-09-21 | Fix channels with element type of size zero. | Ian Lance Taylor | 1 | -1/+1 | |
From-SVN: r179030 | |||||
2011-09-20 | Fix calling make with slice whose element type is size zero. | Ian Lance Taylor | 1 | -1/+2 | |
From-SVN: r179019 | |||||
2011-09-20 | Implement goto restrictions. | Ian Lance Taylor | 1 | -9/+12 | |
From-SVN: r179018 |