lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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