...
Source file src/pkg/runtime/os_netbsd_arm64.go
1
2
3
4
5 package runtime
6
7 import "unsafe"
8
9 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
10
11 mc.__gregs[_REG_ELR] = uint64(funcPC(lwp_tramp))
12 mc.__gregs[_REG_X31] = uint64(uintptr(stk))
13 mc.__gregs[_REG_X0] = uint64(uintptr(unsafe.Pointer(mp)))
14 mc.__gregs[_REG_X1] = uint64(uintptr(unsafe.Pointer(mp.g0)))
15 mc.__gregs[_REG_X2] = uint64(fn)
16 }
17
18
19 func cputicks() int64 {
20
21
22
23 return nanotime()
24 }
25
View as plain text