mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
a1bcc15458
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4080
54 lines
984 B
Go
54 lines
984 B
Go
// +build amd64 amd64p32 arm
|
|
// +build go1.6
|
|
|
|
package goid
|
|
|
|
import "unsafe"
|
|
|
|
// Just enough of the structs from runtime/runtime2.go to get the offset to goid.
|
|
// See https://github.com/golang/go/blob/release-branch.go1.6/src/runtime/runtime2.go
|
|
|
|
type stack struct {
|
|
lo uintptr
|
|
hi uintptr
|
|
}
|
|
|
|
type gobuf struct {
|
|
sp uintptr
|
|
pc uintptr
|
|
g uintptr
|
|
ctxt uintptr
|
|
ret uintptr
|
|
lr uintptr
|
|
bp uintptr
|
|
}
|
|
|
|
type g struct {
|
|
stack stack
|
|
stackguard0 uintptr
|
|
stackguard1 uintptr
|
|
|
|
_panic uintptr
|
|
_defer uintptr
|
|
m uintptr
|
|
stackAlloc uintptr
|
|
sched gobuf
|
|
syscallsp uintptr
|
|
syscallpc uintptr
|
|
stkbar []uintptr
|
|
stkbarPos uintptr
|
|
stktopsp uintptr
|
|
param unsafe.Pointer
|
|
atomicstatus uint32
|
|
stackLock uint32
|
|
goid int64 // Here it is!
|
|
}
|
|
|
|
// Backdoor access to runtime·getg().
|
|
func getg() uintptr // in goid_go1.5plus{,_arm}.s
|
|
|
|
func Get() int64 {
|
|
gg := (*g)(unsafe.Pointer(getg()))
|
|
return gg.goid
|
|
}
|