coroutine.status |
---|
Summary Returns the status of a thread Prototype
Description Returns a string indicating the status of the thread. Raises an error if the argument is not a thread. running normal suspended dead A thread is "running" if coroutine.status is called from within the thread itself. A thread is "normal" if the coroutine is active, but has resumed another coroutine. It is "suspended" after being created but before it is resumed, and after yielding. It is "dead" after it has returned from the entire function.
See Also ... Lua functions
coroutine.create - Creates a new coroutine thread
Topics
Lua base functions
(Help topic: lua=coroutine.status) |
Enter a search string to find matching documentation.
Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.