mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
cc4f773b0e
This includes support for journal mode set to WAL on the BSDs. Relates to: #1753, #2962
25 lines
547 B
Go
25 lines
547 B
Go
//go:build !(darwin || linux) || !(amd64 || arm64 || riscv64) || sqlite3_noshm || sqlite3_nosys
|
|
|
|
package alloc
|
|
|
|
import "github.com/tetratelabs/wazero/experimental"
|
|
|
|
func Slice(cap, _ uint64) experimental.LinearMemory {
|
|
return &sliceMemory{make([]byte, 0, cap)}
|
|
}
|
|
|
|
type sliceMemory struct {
|
|
buf []byte
|
|
}
|
|
|
|
func (b *sliceMemory) Free() {}
|
|
|
|
func (b *sliceMemory) Reallocate(size uint64) []byte {
|
|
if cap := uint64(cap(b.buf)); size > cap {
|
|
b.buf = append(b.buf[:cap], make([]byte, size-cap)...)
|
|
} else {
|
|
b.buf = b.buf[:size]
|
|
}
|
|
return b.buf
|
|
}
|