lua-users home
lua-l archive

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


On Wed, Jan 20, 2010 at 13:42,  <webmaster@benjamin-thaut.de> wrote:
> What does LuaJit 2 use for internal error handling? setjump / longjump or does it use c++ exceptions, or something else? I need it to use c++ exceptions to make sure that it destroys c++ objects and is multi threading captable. If it does not use c++ exceptions is there a way to make it use them?

Current LJ2 Git HEAD seems to be fully C++ compatible on platforms
where it supports "EXT" unwinding (see comment in src/lj_ext.c).

You may find link to LJ2 Git repository at http://luajit.org/download.html.

Alexander.