From: Mike Pall Date: Wed, 20 Jan 2010 11:24:56 +0000 (+0100) Subject: Update docs about exception handling. X-Git-Tag: v2.0.0-beta3~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d62dcd4a72f0f3b1bb2c53483aa3ea6d4dec4935;p=thirdparty%2FLuaJIT.git Update docs about exception handling. --- diff --git a/doc/api.html b/doc/api.html index 930cbed2..af438ad2 100644 --- a/doc/api.html +++ b/doc/api.html @@ -318,11 +318,11 @@ exceptions. If you're embedding LuaJIT into an application, only enable it after running luaL_openlibs.

-LuaJIT already intercepts exception handling for systems using -DWARF2 stack unwinding (e.g. Linux, OSX). This is a zero-cost mechanism -and always enabled. You don't need to use any wrapper functions, -except when you want to get a more specific error message than -"C++ exception". +LuaJIT already intercepts exception handling for all x64 systems and +for x86 systems using DWARF2 stack unwinding (e.g. Linux, OSX). This +is a zero-cost mechanism and always enabled. You don't need to use any +wrapper functions, except when you want to get a more specific error +message than "C++ exception".