aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/ext_ffi_api.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/ext_ffi_api.html b/doc/ext_ffi_api.html
index b1b42878..2d69cb49 100644
--- a/doc/ext_ffi_api.html
+++ b/doc/ext_ffi_api.html
@@ -336,6 +336,28 @@ objects.
336 336
337<h2 id="util">Utility Functions</h2> 337<h2 id="util">Utility Functions</h2>
338 338
339<h3 id="ffi_errno"><tt>err = ffi.errno()</tt></h3>
340<p>
341Returns the error number set by the last C&nbsp;function call which
342indicated an error condition.
343</p>
344<p>
345This function offers a portable and OS-independent way to get the error
346number. Note that only <em>some</em> C&nbsp;functions set the error
347number. And it's only significant if the function actually indicated an
348error condition (e.g. with a return value of <tt>-1</tt> or
349<tt>NULL</tt>). Otherwise, it may or may not contain any previously set
350value.
351</p>
352<p>
353You're advised to call this function only when needed and as close as
354possible after the return of the related C&nbsp;function. The
355<tt>errno</tt> value is preserved across hooks, memory allocations,
356invocations of the JIT compiler and other internal VM activity. The same
357applies to the value returned by <tt>GetLastError()</tt> on Windows, but
358you need to declare and call it yourself.
359</p>
360
339<h3 id="ffi_string"><tt>str = ffi.string(ptr [,len])</tt></h3> 361<h3 id="ffi_string"><tt>str = ffi.string(ptr [,len])</tt></h3>
340<p> 362<p>
341Creates an interned Lua string from the data pointed to by 363Creates an interned Lua string from the data pointed to by