commit | 07acc02a29ac74e7c0b08b4cd382bf71acd262dd | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Jun 02 09:32:38 2011 -0400 |
committer | Russ Cox <rsc@golang.org> | Thu Jun 02 09:32:38 2011 -0400 |
tree | 2225f4169edf1b33ea40b32ee34770df17dd5c1d | |
parent | 422abf3b8e9fd94c31bb064af4aab8d27d4dbf10 [diff] |
compress/flate: do not use background goroutines Programs expect that Read and Write are synchronous. The background goroutines make the implementation a little easier, but they introduce asynchrony that trips up calling code. Remove them. R=golang-dev, krasin CC=golang-dev https://golang.org/cl/4548079