2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-28 13:23:29 +00:00
restic/internal/archiver/buffer_pool.go
Alexander Neumann 83d1a46526 Moves files
2017-07-23 14:19:13 +02:00

22 lines
272 B
Go

package archiver
import (
"sync"
"github.com/restic/chunker"
)
var bufPool = sync.Pool{
New: func() interface{} {
return make([]byte, chunker.MinSize)
},
}
func getBuf() []byte {
return bufPool.Get().([]byte)
}
func freeBuf(data []byte) {
bufPool.Put(data)
}