lua-users home
lua-l archive

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


>Does anyone know the thread-safeness of the Lua libraries?

The standard Lua libraries use only standard (ANSI/ISO) C functions. I'm not
sure these are thread-safe (this may depend on your platform), but the rest of
the code in the standard Lua libraries is thread-safe in that no global (ie,
static) data is kept.
--lhf