aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2009-12-09doc/contribute: try to make it clearer that you send a review with hg mail, n...weekly.2009-12-09Russ Cox
2009-12-09added benchmarks to rand_test.go;Roger Peppe
2009-12-09syscalls can return negative i/o counts. fix bugs in ReadAt and WriteAt not t...Rob Pike
2009-12-09doc: split contribute.html into code.html and contribute.htmlRuss Cox
2009-12-09Make the operations on the global rng thread safe.Roger Peppe
2009-12-09Continuation of issue 221 fix. When 8g or 6g or 5g are called with aCharles L. Dorian
2009-12-09json package: Fixed handling of nil valuesRoss Light
2009-12-09Added my name to the AUTHORS and CONTRIBUTORS listRoss Light
2009-12-09Added XTEA block cipher package to src/pkg/cryptoAdrian O'Grady
2009-12-08runtime: start new darwin/amd64 threads on correct stack,Russ Cox
2009-12-08A+C: two more namesRuss Cox
2009-12-08bufio: use copy - significant speedup for writersRuss Cox
2009-12-08Fix stack on FreeBSD / add stack check across the boardDevon H. O'Dell
2009-12-08When SA_SIGINFO is set, we should use __sa_sigaction on FreeBSDDevon H. O'Dell
2009-12-076l, 8l: make string buffer big enough for 8 chars (and then some)weekly.2009-12-07Russ Cox
2009-12-07test/bench: faster fasta (mostly due to bufio fix)Russ Cox
2009-12-07runtime: don't touch pages of memory unnecessarily.Russ Cox
2009-12-07runtime: introduce unsafe.New and unsafe.NewArrayRuss Cox
2009-12-07use a bootstrap array to avoid allocation for short vectorsRobert Griesemer
2009-12-07Remove copyBytes completely in favor of copy.Christopher Wedgwood
2009-12-07pick off special one-byte case in copy. worth 2x in benchmarks (38ns->16ns).Rob Pike
2009-12-07the AST walker currently provides no way to find out how theRoger Peppe
2009-12-07changes necessary to get the new chameneosredux onto shootout.alioth.debian.o...Roger Peppe
2009-12-06save a few ns by inlining (which mostly simplifies things anyway).Rob Pike
2009-12-06unexport Fmt. it's not needed outside this package any moreRob Pike
2009-12-06Make printing faster by avoiding mallocs and some other advances.Rob Pike
2009-12-06runtime: disable pointer scan optimizationRuss Cox
2009-12-04Fix syscall.Statfs and syscall.Fstatfs for 386 GNU/Linux.Ian Lance Taylor
2009-12-04test/bench: use range in reverse-complementRuss Cox
2009-12-04gc/runtime: pass type structure to makeslice.Russ Cox
2009-12-04gc: walk pointer in range on slice/arrayRuss Cox
2009-12-046g/8g optimizer fix: throw functions now in runtimeRuss Cox
2009-12-04test/bench: dead code in reverse-complementRuss Cox
2009-12-04gotest: stop if the // gotest commands failRuss Cox
2009-12-04net: more fiddling with the udp test.Russ Cox
2009-12-04libmach: fix disassembly of MOVLQSXRuss Cox
2009-12-04gotest: ignore *_test.pb.goRuss Cox
2009-12-04Add syscall.Rename for NaCl. Fixes NaCl build.Ian Lance Taylor
2009-12-04runtime: shift the index for the sort by one.Adam Langley
2009-12-04Add os.Rename.Ian Lance Taylor
2009-12-04Remove global chanlock.Adam Langley
2009-12-04bytes: asm for bytes.IndexByteRuss Cox
2009-12-04spec: document that built-ins cannot be used as func valuesRuss Cox
2009-12-04make Native Client support build again,Russ Cox
2009-12-04testing: compute MB/s in benchmarksRuss Cox
2009-12-04avoid an allocation inside bytes.Buffer by providing a static array.Rob Pike
2009-12-038l: fix print line number format, buffer overflowRuss Cox
2009-12-03net: turn off empty packet test by defaultRuss Cox
2009-12-03gc: check for assignment to private fields during initializationRuss Cox
2009-12-036g code gen bugKen Thompson