1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 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 // Machine dependent mcontext initialisation for LWP. 11 mc.__gregs[_REG_EIP] = uint32(funcPC(lwp_tramp)) 12 mc.__gregs[_REG_UESP] = uint32(uintptr(stk)) 13 mc.__gregs[_REG_EBX] = uint32(uintptr(unsafe.Pointer(mp))) 14 mc.__gregs[_REG_EDX] = uint32(uintptr(unsafe.Pointer(gp))) 15 mc.__gregs[_REG_ESI] = uint32(fn) 16 } 17