summaryrefslogtreecommitdiff
path: root/doc/ext_ffi_semantics.html
diff options
context:
space:
mode:
authorMike Pall <mike>2011-12-14 15:12:49 +0100
committerMike Pall <mike>2011-12-14 15:12:49 +0100
commit6ace80c897a8359bedd3f195d126725cb0bf0f8d (patch)
treeabf2b1b2eed1d3a6b499aa919ea5c6eb46d10428 /doc/ext_ffi_semantics.html
parenta3024683457cab7b1cf1b4029fd1b16e565024a8 (diff)
downloadluajit-6ace80c897a8359bedd3f195d126725cb0bf0f8d.tar.gz
luajit-6ace80c897a8359bedd3f195d126725cb0bf0f8d.tar.bz2
luajit-6ace80c897a8359bedd3f195d126725cb0bf0f8d.zip
RELEASE LuaJIT-2.0.0-beta9v2.0.0-beta9
Diffstat (limited to 'doc/ext_ffi_semantics.html')
-rw-r--r--doc/ext_ffi_semantics.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html
index b111ed5d..661b0b4c 100644
--- a/doc/ext_ffi_semantics.html
+++ b/doc/ext_ffi_semantics.html
@@ -942,8 +942,8 @@ GUI application, which waits for user input most of the time, anyway.
942For new designs <b>avoid push-style APIs</b> (C&nbsp;function repeatedly 942For new designs <b>avoid push-style APIs</b> (C&nbsp;function repeatedly
943calling a callback for each result). Instead <b>use pull-style APIs</b> 943calling a callback for each result). Instead <b>use pull-style APIs</b>
944(call a C&nbsp;function repeatedly to get a new result). Calls from Lua 944(call a C&nbsp;function repeatedly to get a new result). Calls from Lua
945to C via the FFI are much faster than the other way round. Most well 945to C via the FFI are much faster than the other way round. Most well-designed
946designed libraries already use pull-style APIs (read/write, get/put). 946libraries already use pull-style APIs (read/write, get/put).
947</p> 947</p>
948 948
949<h2 id="clib">C Library Namespaces</h2> 949<h2 id="clib">C Library Namespaces</h2>