Source file
src/runtime/os_netbsd_386.go
1
2
3
4
5 package runtime
6
7 import (
8 "internal/abi"
9 "unsafe"
10 )
11
12 func lwp_mcontext_init(mc *mcontextt, stk unsafe.Pointer, mp *m, gp *g, fn uintptr) {
13
14 mc.__gregs[_REG_EIP] = uint32(abi.FuncPCABI0(lwp_tramp))
15 mc.__gregs[_REG_UESP] = uint32(uintptr(stk))
16 mc.__gregs[_REG_EBX] = uint32(uintptr(unsafe.Pointer(mp)))
17 mc.__gregs[_REG_EDX] = uint32(uintptr(unsafe.Pointer(gp)))
18 mc.__gregs[_REG_ESI] = uint32(fn)
19 }
20
View as plain text