|
Ashish Ranjan wrote:
Dear all, is lua thread-safe, ie, whether i can guarantedly "safely" use two different contexts of luavm in two separate threads of same program. bye :-)
Yes. As long as you don't use the Lua data structures generated by one thread in another thread, you'll be fine.
-Eric