[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: threading in lua 5
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 23 Jun 2003 11:51:14 -0300
>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