示例#1
0
文件: State.go 项目: rdlaitila/leaf
// Exchange values between different threads of the /same/ global state.
//
// This function pops n values from the stack from, and pushes them onto
// the stack to.
func (this *State) Xmove(from *State, n int) {
	C.lua_xmove(from.luastate, this.luastate, C.int(n))
}
示例#2
0
文件: lua.go 项目: szll/golua
// lua_xmove
func XMove(from *State, to *State, n int) {
	C.lua_xmove(from.s, to.s, C.int(n))
}
示例#3
0
文件: state.go 项目: halturin/luajit
// Exchange values between different threads of the /same/ global state.
//
// This function pops n values from the stack from, and pushes them onto
// the stack to.
func (to *State) Xmove(from *State, n int) {
	C.lua_xmove(from.l, to.l, C.int(n))
}