summaryrefslogtreecommitdiff
path: root/doc/extensions.html
diff options
context:
space:
mode:
authorMike Pall <mike>2013-09-10 00:06:17 +0200
committerMike Pall <mike>2013-09-10 00:06:17 +0200
commit31e7cd1c7672bde788f3d60fd3de2bbcd77ccd19 (patch)
treece06e2d0b31331973cc0bfca5d9020c399c445b4 /doc/extensions.html
parent29078518c14a4f49224fc58c57053bda2e8284dc (diff)
downloadluajit-31e7cd1c7672bde788f3d60fd3de2bbcd77ccd19.tar.gz
luajit-31e7cd1c7672bde788f3d60fd3de2bbcd77ccd19.tar.bz2
luajit-31e7cd1c7672bde788f3d60fd3de2bbcd77ccd19.zip
Low-overhead profiler, part 6: documentation.
Diffstat (limited to 'doc/extensions.html')
-rw-r--r--doc/extensions.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/extensions.html b/doc/extensions.html
index 8300753e..33bcfb28 100644
--- a/doc/extensions.html
+++ b/doc/extensions.html
@@ -58,6 +58,8 @@ td.excinterop {
58<a href="ext_jit.html">jit.* Library</a> 58<a href="ext_jit.html">jit.* Library</a>
59</li><li> 59</li><li>
60<a href="ext_c_api.html">Lua/C API</a> 60<a href="ext_c_api.html">Lua/C API</a>
61</li><li>
62<a href="ext_profiler.html">Profiler</a>
61</li></ul> 63</li></ul>
62</li><li> 64</li><li>
63<a href="status.html">Status</a> 65<a href="status.html">Status</a>
@@ -114,7 +116,7 @@ This module is a LuaJIT built-in &mdash; you don't need to download or
114install Lua BitOp. The Lua BitOp site has full documentation for all 116install Lua BitOp. The Lua BitOp site has full documentation for all
115<a href="http://bitop.luajit.org/api.html"><span class="ext">&raquo;</span>&nbsp;Lua BitOp API functions</a>. 117<a href="http://bitop.luajit.org/api.html"><span class="ext">&raquo;</span>&nbsp;Lua BitOp API functions</a>.
116The FFI adds support for 118The FFI adds support for
117<a href="ext_ffi_semantics.html#cdata_arith">64&nbsp;bit bitwise operations<a>, 119<a href="ext_ffi_semantics.html#cdata_arith">64&nbsp;bit bitwise operations</a>,
118using the same API functions. 120using the same API functions.
119</p> 121</p>
120<p> 122<p>
@@ -149,6 +151,11 @@ LuaJIT adds some
149<a href="ext_c_api.html">extra functions to the Lua/C API</a>. 151<a href="ext_c_api.html">extra functions to the Lua/C API</a>.
150</p> 152</p>
151 153
154<h3 id="profiler">Profiler</h3>
155<p>
156LuaJIT has an <a href="ext_profiler.html">integrated profiler</a>.
157</p>
158
152<h2 id="library">Enhanced Standard Library Functions</h2> 159<h2 id="library">Enhanced Standard Library Functions</h2>
153 160
154<h3 id="xpcall"><tt>xpcall(f, err [,args...])</tt> passes arguments</h3> 161<h3 id="xpcall"><tt>xpcall(f, err [,args...])</tt> passes arguments</h3>