Difference between revisions of "Coroutine.status"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | Returns the status of | + | <translate>Returns the status of [[[coroutine]]] co, as a string: "running", if the coroutine is running (that is, it called status); "suspended", if the coroutine is suspended in a call to yield, or if it has not started running yet; "normal" if the coroutine is active but not running (that is, it has resumed another coroutine); and "dead" if the coroutine has finished its body function, or if it has stopped with an error.</translate> |
<source lang="lua"> | <source lang="lua"> | ||
(string) = coroutine.status(co) | (string) = coroutine.status(co) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''co''': (coroutine) coroutine to check status for <br/> | + | '''co''': (coroutine) <translate>coroutine to check status for</translate> <br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (string) the state of coroutine<br/> | + | '''Returns''' (string) <translate>the state of coroutine</translate><br/> |
Revision as of 13:33, 23 August 2018
Available since: Gideros 2011.6
Description
Returns the status of [[[coroutine]]] co, as a string: "running", if the coroutine is running (that is, it called status); "suspended", if the coroutine is suspended in a call to yield, or if it has not started running yet; "normal" if the coroutine is active but not running (that is, it has resumed another coroutine); and "dead" if the coroutine has finished its body function, or if it has stopped with an error.
(string) = coroutine.status(co)
Parameters
co: (coroutine) coroutine to check status for
Return values
Returns (string) the state of coroutine