[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: how to transfer Lua Function and function params between different Lua state?
- From: Marc Balmer <marc@...>
- Date: Sun, 25 Nov 2012 14:02:55 +0100
Am 25.11.2012 um 11:22 schrieb chuang <lichuang1982@gmail.com>:
> I want to write a C module,when Lua call this module's spawn function,it create a new Lua state,and the new Lua state can call its Lua function,like this:
>
> require("qnode")
>
> function test(a)
> print("in test")
> print(a)
> end
>
> qnode.spawn(test, 100)
>
> but,when i review the Lua C API,seems there is no function to get the Lua function from the Lua stack.
> So,how can I achieve this purpose?
>
>
You could look at the proxy module:
https://github.com/mbalmer/luaproxy
maybe not 100% what you want, but maybe close.