mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 00:32:26 -05:00
update modernc.org/sqlite to v1.37.0-concurrrency-workaround (#3958)
This commit is contained in:
parent
9c31e213ca
commit
fdf23a91de
64 changed files with 1070 additions and 8220 deletions
11
vendor/modernc.org/libc/memgrind_musl.go
generated
vendored
11
vendor/modernc.org/libc/memgrind_musl.go
generated
vendored
|
|
@ -269,6 +269,17 @@ func UsableSize(p uintptr) Tsize_t {
|
|||
return Tsize_t(memory.UintptrUsableSize(p))
|
||||
}
|
||||
|
||||
type MemAllocatorStat struct {
|
||||
Allocs int
|
||||
Bytes int
|
||||
Mmaps int
|
||||
}
|
||||
|
||||
// MemStat no-op for this build tag
|
||||
func MemStat() MemAllocatorStat {
|
||||
return MemAllocatorStat{}
|
||||
}
|
||||
|
||||
func Xmalloc_usable_size(tls *TLS, p uintptr) (r Tsize_t) {
|
||||
return UsableSize(p)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue