File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed
Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11module github.com/erigontech/mdbx-go
22
3- go 1.20
3+ go 1.23.0
4+
5+ toolchain go1.24.1
46
57require github.com/ianlancetaylor/cgosymbolizer v0.0.0-20241129212102-9c50ad6b591e
8+
9+ require golang.org/x/sys v0.31.0 // indirect
Original file line number Diff line number Diff line change 11github.com/ianlancetaylor/cgosymbolizer v0.0.0-20241129212102-9c50ad6b591e h1:8AnObPi8WmIgjwcidUxaREhXMSpyUJeeSrIkZTXdabw =
22github.com/ianlancetaylor/cgosymbolizer v0.0.0-20241129212102-9c50ad6b591e /go.mod h1:DvXTE/K/RtHehxU8/GtDs4vFtfw64jJ3PaCnFri8CRg =
3+ golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik =
4+ golang.org/x/sys v0.31.0 /go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k =
Original file line number Diff line number Diff line change 22
33package threads
44
5- import "syscall"
5+ import (
6+ "golang.org/x/sys/windows"
7+ )
68
79// CurrentThreadID returns the Windows thread ID.
810func CurrentThreadID () uint64 {
9- return uint64 (syscall .GetCurrentThreadId ())
11+ return uint64 (windows .GetCurrentThreadId ())
1012}
You can’t perform that action at this time.
0 commit comments