summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* cmd/gc: fix undefined behaviour warnings in mparith3.cDave Cheney2014-08-271-2/+2
* time: use go generate rather than Makefile (windows only)Rob Pike2014-08-264-17/+25
* unicode: use go generate instead of make to create tables.goRob Pike2014-08-262-15/+3
* runtime: name hi and lo parts of ret in assemblyJosh Bleecher Snyder2014-08-261-2/+2
* runtime: convert Stack to Go.R?my Oudompheng2014-08-268-39/+72
* runtime: convert int64tofloat64, uint64tofloat64 to GoDave Cheney2014-08-262-19/+21
* runtime,sync: Convert procPin and procUnpin functions to Go.Sanjay Menakuru2014-08-262-12/+20
* net/http: fix data race in testBrad Fitzpatrick2014-08-253-17/+32
* io: document that Readers and Writers must not retain buffersBrad Fitzpatrick2014-08-251-1/+7
* cmd/go: add missing doc for GOOS and GOARCHChaiShushan2014-08-251-0/+4
* regexp: fix imports in the middle of the license headerCaleb Spare2014-08-251-3/+2
* liblink: introduce way to avoid pc-relative addressingRuss Cox2014-08-251-4/+31
* cmd/gofmt: don't permit -w with stdinRobert Griesemer2014-08-251-1/+6
* unicode/maketables: add -output flag, buffer output, use gofmtRob Pike2014-08-252-62/+117
* strings, bytes: document behavior of Replace when old is emptyCaleb Spare2014-08-252-0/+6
* cmd/go: clean up a couple of inconsequential nits in generateRob Pike2014-08-252-2/+1
* runtime: restore scavenger constantsDmitriy Vyukov2014-08-254-2/+12
* runtime: restore nacl timensDmitriy Vyukov2014-08-251-0/+3
* net/http: populate Request.Close in ReadRequestBrad Fitzpatrick2014-08-253-10/+40
* crypto/cipher: add CFB test vectors.Adam Langley2014-08-251-1/+76
* cmd/gc, runtime: treat slices and strings like pointers in garbage collectionRuss Cox2014-08-2523-155/+147
* cmd/go: add GOOS and GOARCH to generateRob Pike2014-08-252-1/+19
* cmd/go: add simple test for generate's line parserRob Pike2014-08-251-0/+46
* encoding/json: make ,string work when encoding pointer fieldsBrad Fitzpatrick2014-08-252-2/+28
* runtime: round channel size in allocation instead of using system-specific pa...Russ Cox2014-08-252-5/+2
* runtime: remove dedicated scavenger threadDmitriy Vyukov2014-08-257-92/+77
* runtime: add commentDmitriy Vyukov2014-08-251-1/+5
* runtime: convert timers to GoDmitriy Vyukov2014-08-258-376/+302
* runtime: convert async semaphores to GoDmitriy Vyukov2014-08-2514-225/+242
* runtime: fix plan9 HeapSys accountingDmitriy Vyukov2014-08-251-5/+19
* runtime: fix chan alignment on 32 bitsDmitriy Vyukov2014-08-251-0/+3
* cmd/gc: fix order of channel evaluation of receive channelsRuss Cox2014-08-251-0/+8
* runtime: refactor CPU profilingDmitriy Vyukov2014-08-251-15/+14
* runtime: fix block profile for sync semaphoresDmitriy Vyukov2014-08-251-1/+1
* runtime: fix block profile for sync semaphoresDmitriy Vyukov2014-08-251-0/+20
* runtime: add fast paths to non-blocking channel operationsDmitriy Vyukov2014-08-254-8/+84
* runtime: Loosen conditions in TestMemstat in an attempt to fix the nacl/arm b...Sanjay Menakuru2014-08-251-2/+6
* runtime: convert NewCallback and NewCallbackCDecl to GoAlex Brainman2014-08-259-105/+127
* runtime,runtime/debug: Converted some functions from goc to Go.Sanjay Menakuru2014-08-2410-46/+106
* cmd/5g, cmd/6g, cmd/8g: clear Addr node when registerizingJosh Bleecher Snyder2014-08-243-0/+3
* cmd/gc: fix buildRuss Cox2014-08-242-1/+1
* cmd/5g, cmd/8g: registerize small structs and arraysRuss Cox2014-08-242-6/+147
* cmd/gc: re-enable IfacePointerOnlyRuss Cox2014-08-241-1/+1
* cmd/link: fix testdata generationMatthew Dempsky2014-08-249-8/+11
* runtime: remove some overuse of uintptr/unsafe.PointerRuss Cox2014-08-245-51/+55
* cmd/yacc: remove Makefile and build expr using go generateRob Pike2014-08-244-17/+35
* cmd/go: add go generateRob Pike2014-08-247-2/+491
* runtime: fix arm buildRuss Cox2014-08-241-2/+2
* runtime: convert synchronous semaphores to GoDmitriy Vyukov2014-08-244-92/+144
* runtime: convert channel operations to Go, part 1 (chansend1).Keith Randall2014-08-2416-95/+378