Age | Commit message (Expand) | Author | Files | Lines |
2016-10-10 | runtime: copy channel code from Go 1.7 runtime | Ian Lance Taylor | 6 | -7/+2496 |
2016-09-30 | runtime: copy internal locking code from Go 1.7 runtime | Ian Lance Taylor | 12 | -25/+1297 |
2016-09-29 | runtime: copy runtime.go and runtime1.go from Go 1.7 | Ian Lance Taylor | 10 | -43/+835 |
2016-09-23 | internal/syscall/unix: add getrandom syscall for MIPS and SPARC | Ian Lance Taylor | 4 | -1/+34 |
2016-09-21 | compiler, runtime: replace hashmap code with Go 1.7 hashmap | Ian Lance Taylor | 10 | -108/+1918 |
2016-09-20 | syscall: build export_unix_test.go on solaris | Ian Lance Taylor | 1 | -1/+1 |
2016-09-11 | runtime/internal/sys: new package, API copied from Go 1.7 | Ian Lance Taylor | 5 | -5/+164 |
2016-09-10 | libgo: update to Go 1.7.1 release | Ian Lance Taylor | 26 | -253/+1110 |
2016-09-10 | runtime/internal/atomic: new package, API copied from Go 1.7 | Ian Lance Taylor | 4 | -0/+396 |
2016-09-09 | runtime: align ucontext_t argument to 16 byte boundary | Ian Lance Taylor | 1 | -1/+5 |
2016-08-30 | runtime: use -fgo-c-header to build C header file | Ian Lance Taylor | 3 | -0/+1037 |
2016-08-15 | cmd/go: ignore errors from go/build for standard packages | Ian Lance Taylor | 1 | -0/+7 |
2016-08-13 | crypto/aes, hash/crc32: ignore s390x specific files for now | Ian Lance Taylor | 3 | -0/+6 |
2016-08-13 | syscall: remove exec_solaris_test.go | Ian Lance Taylor | 1 | -37/+0 |
2016-08-11 | os: fix build tags for dir_regfile.go | Ian Lance Taylor | 1 | -2/+2 |
2016-08-08 | text/template: reduce maxExecDepth for gccgo further | Ian Lance Taylor | 1 | -2/+2 |
2016-08-07 | internal/syscall/unix: fix syscalls for alpha, ia64, s390 | Ian Lance Taylor | 3 | -0/+27 |
2016-08-06 | libgo: fix getrandom build for 32-bit ppc | Ian Lance Taylor | 1 | -1/+1 |
2016-08-06 | libgo: change build procedure to use build tags | Ian Lance Taylor | 102 | -2226/+140 |
2016-08-04 | text/template: reduce maxExecDepth for gccgo | Ian Lance Taylor | 1 | -1/+3 |
2016-07-26 | os/user: fix Solaris declaration. | Ian Lance Taylor | 1 | -1/+1 |
2016-07-22 | libgo: update to go1.7rc3 | Ian Lance Taylor | 1139 | -16532/+51083 |
2016-04-23 | cmd/go: bring in final version of gccgo pkg-config support | Ian Lance Taylor | 1 | -2/+11 |
2016-04-13 | libgo: update to Go 1.6.1 release | Ian Lance Taylor | 10 | -13/+59 |
2016-04-12 | reflect: change Value.Call results to not be addressable | Ian Lance Taylor | 2 | -3/+11 |
2016-02-26 | re PR go/69966 (libgo: Port syscall.SetsockoptUcred from golang) | Ian Lance Taylor | 3 | -0/+28 |
2016-02-18 | libgo: Update to final Go 1.6 release. | Ian Lance Taylor | 40 | -149/+1337 |
2016-02-10 | re PR go/66904 (cmd/go: "#cgo pkg-config:" comments do not work with gccgo) | Ian Lance Taylor | 1 | -3/+79 |
2016-02-03 | libgo: Update to go1.6rc1. | Ian Lance Taylor | 715 | -11668/+43431 |
2015-11-21 | re PR go/66378 (libgo syscall.Sendfile() does not honor/use offset argument) | Ian Lance Taylor | 2 | -0/+2 |
2015-11-21 | re PR go/65785 (libgo TestIPv4MulticastListener test fails on machine with no... | Ian Lance Taylor | 1 | -2/+2 |
2015-11-20 | re PR go/68072 (malformed DWARF TagVariable entry) | Ian Lance Taylor | 1 | -0/+5 |
2015-11-20 | cmd: Use correct install tool dir with gccgo | Ian Lance Taylor | 2 | -2/+27 |
2015-11-10 | re PR go/68255 (cgo-generated constructor not being called) | Ian Lance Taylor | 1 | -10/+2 |
2015-11-07 | re PR go/66138 (json decoder Decode function fails for some structure return ... | Ian Lance Taylor | 7 | -18/+47 |
2015-11-06 | libgo: Solaris portability fixes. | Ian Lance Taylor | 6 | -32/+44 |
2015-11-02 | syscall: Change raw_ioctl cmd type to uintptr. | Ian Lance Taylor | 1 | -2/+2 |
2015-10-31 | libgo: Update from Go 1.5 to Go 1.5.1. | Ian Lance Taylor | 13 | -14/+87 |
2015-10-31 | runtime: Remove now unnecessary pad field from ParFor. | Ian Lance Taylor | 988 | -30033/+85128 |
2015-10-29 | compiler, reflect, runtime: remove zero field from type descriptor | Ian Lance Taylor | 1 | -6/+0 |
2015-10-29 | compiler, runtime: change type hash/equal to Go funcs | Ian Lance Taylor | 1 | -2/+2 |
2015-10-07 | re PR go/67874 (fd_unix.go does not build when there is fcntl64 and no fcntl ... | Ian Lance Taylor | 1 | -1/+9 |
2015-09-15 | libgo: don't provide ustat on arm64 GNU/Linux | Ian Lance Taylor | 2 | -3/+11 |
2015-08-03 | syscall: RawSockaddr fix for ppc64, ppc64le | Ian Lance Taylor | 3 | -5/+28 |
2015-07-13 | syscall: remove calls to Entersyscall & Exitsyscall in Getdents | Ian Lance Taylor | 1 | -2/+0 |
2015-04-17 | re PR go/64683 (FAIL: runtime/pprof -- testing.go:278: The entry did not match) | Ian Lance Taylor | 1 | -0/+4 |
2015-04-17 | re PR go/65755 (incorrect reflection of struct fields with gccgo) | Ian Lance Taylor | 1 | -7/+1 |
2015-03-31 | go/cmd/go: always link external test packages first | Ian Lance Taylor | 3 | -5/+14 |
2015-03-26 | re PR go/65587 (C package incomplete/not working for powerpc-linux-gnu) | Ian Lance Taylor | 1 | -1/+1 |
2015-03-26 | libgo: Fix go/runtime test failure on S390. | Ian Lance Taylor | 2 | -1/+11 |