diff options
Diffstat (limited to '')
-rw-r--r-- | doc/ext_ffi_semantics.html | 4 |
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. | |||
942 | For new designs <b>avoid push-style APIs</b> (C function repeatedly | 942 | For new designs <b>avoid push-style APIs</b> (C function repeatedly |
943 | calling a callback for each result). Instead <b>use pull-style APIs</b> | 943 | calling a callback for each result). Instead <b>use pull-style APIs</b> |
944 | (call a C function repeatedly to get a new result). Calls from Lua | 944 | (call a C function repeatedly to get a new result). Calls from Lua |
945 | to C via the FFI are much faster than the other way round. Most well | 945 | to C via the FFI are much faster than the other way round. Most well-designed |
946 | designed libraries already use pull-style APIs (read/write, get/put). | 946 | libraries 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> |