aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Pall <mike>2010-01-20 12:24:56 +0100
committerMike Pall <mike>2010-01-20 12:24:56 +0100
commitd62dcd4a72f0f3b1bb2c53483aa3ea6d4dec4935 (patch)
treee052625a1416f8f11e5cf432a8b1699ba0423e60 /doc
parenta61df8efbe5bbe3726d65ad0800a3106ed3a8bf0 (diff)
downloadluajit-d62dcd4a72f0f3b1bb2c53483aa3ea6d4dec4935.tar.gz
luajit-d62dcd4a72f0f3b1bb2c53483aa3ea6d4dec4935.tar.bz2
luajit-d62dcd4a72f0f3b1bb2c53483aa3ea6d4dec4935.zip
Update docs about exception handling.
Diffstat (limited to 'doc')
-rw-r--r--doc/api.html10
1 files changed, 5 insertions, 5 deletions
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
318enable it <b>after</b> running <tt>luaL_openlibs</tt>. 318enable it <b>after</b> running <tt>luaL_openlibs</tt>.
319</p> 319</p>
320<p> 320<p>
321LuaJIT already intercepts exception handling for systems using 321LuaJIT already intercepts exception handling for all x64 systems and
322DWARF2 stack unwinding (e.g. Linux, OSX). This is a zero-cost mechanism 322for x86 systems using DWARF2 stack unwinding (e.g. Linux, OSX). This
323and always enabled. You don't need to use any wrapper functions, 323is a zero-cost mechanism and always enabled. You don't need to use any
324except when you want to get a more specific error message than 324wrapper functions, except when you want to get a more specific error
325<tt>"C++&nbsp;exception"</tt>. 325message than <tt>"C++&nbsp;exception"</tt>.
326</p> 326</p>
327<br class="flush"> 327<br class="flush">
328</div> 328</div>