Tao.Lua SDK Documentation

Lua.lua_status Method 

Returns the status of the thread L.

[Visual Basic]
Public Shared Function lua_status( _
   ByVal L As IntPtr _
) As Integer
[C#]
public static int lua_status(
   IntPtr L
);

Parameters

L

Return Value

Remarks

The status can be 0 for a normal thread, an error code if the thread finished its execution with an error, or LUA_YIELD if the thread is suspended.

See Also

Lua Class | Tao.Lua Namespace