bump modernc.org/sqlite to v1.35.0-concurrency-workaround (#3797)

This commit is contained in:
kim 2025-02-14 16:54:10 +00:00 committed by GitHub
commit ebbdeee0bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
114 changed files with 891873 additions and 192475 deletions

1
vendor/modernc.org/memory/AUTHORS generated vendored
View file

@ -8,6 +8,7 @@
#
# Please keep the list sorted.
Chris Waldon <christopher(dot)waldon(dot)dev@gmail.com>
Gleb Sakhnov <gleb.sakhnov@gmail.com>
Jan Mercl <0xjnml@gmail.com>
Scot C Bontrager <scot@indievisible.org>

View file

@ -7,6 +7,7 @@
# Please keep the list sorted.
Anup Kodlekere <anup.kodlekere@ibm.com>
Chris Waldon <christopher(dot)waldon(dot)dev@gmail.com>
Gleb Sakhnov <gleb.sakhnov@gmail.com>
Jan Mercl <0xjnml@gmail.com>
Scot C Bontrager <scot@indievisible.org>

2
vendor/modernc.org/memory/Makefile generated vendored
View file

@ -30,7 +30,7 @@ cpu: clean
go tool pprof -lines *.test cpu.out
edit:
@ 1>/dev/null 2>/dev/null gvim -p Makefile *.go &
@ 1>/dev/null 2>/dev/null gvim -p Makefile go.mod builder.json *.go &
editor:
gofmt -l -s -w *.go

View file

@ -1,6 +1,6 @@
{
"autogen": "none",
"autotag": "darwin/(amd64|arm64)|freebsd/(amd64|arm64)|linux/(386|amd64|arm|arm64|loong64|ppc64le|riscv64|s390x)|openbsd/amd64|windows/(amd64|arm64)",
"autoupdate": "darwin/(amd64|arm64)|freebsd/(amd64|arm64)|linux/(386|amd64|arm|arm64|loong64|ppc64le|riscv64|s390x)|openbsd/amd64|windows/(amd64|arm64)",
"test": "darwin/(amd64|arm64)|freebsd/(amd64|arm64)|linux/(386|amd64|arm|arm64|loong64|ppc64le|riscv64|s390x)|openbsd/amd64|windows/(amd64|arm64)"
"autogen": "<none>",
"autoupdate": ".",
"autotag": ".",
"test": "."
}

View file

@ -6,7 +6,7 @@ package memory // import "modernc.org/memory"
import (
"os"
"syscall"
syscall "golang.org/x/sys/windows"
)
const (
@ -22,7 +22,7 @@ const (
const pageSizeLog = 16
var (
modkernel32 = syscall.NewLazyDLL("kernel32.dll")
modkernel32 = syscall.NewLazySystemDLL("kernel32.dll")
osPageMask = osPageSize - 1
osPageSize = os.Getpagesize()
procVirtualAlloc = modkernel32.NewProc("VirtualAlloc")