put puts the bufs on the end of bp.cache Call with mu held
(bufs [][]byte)
| 127 | // |
| 128 | // Call with mu held |
| 129 | func (bp *Pool) putN(bufs [][]byte) { |
| 130 | bp.cache = append(bp.cache, bufs...) |
| 131 | } |
| 132 | |
| 133 | // buffers returns the number of buffers in bp.ache |
| 134 | // |