lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 08/11/2014 07:47 PM, Thiago L. wrote:

On 11/08/14 02:34 PM, Jay Carlson wrote:


On Aug 11, 2014 8:38 AM, "Axel Kittenberger" <axkibe@gmail.com> wrote:

Why do people like MediaWiki disable coroutines, anyway?

Because you can't interrupt running coroutines?

coroutine.resume(coroutine.create(function() while true do end end)) -- good luck interrupting me

Well, you can with a count hook.

--
Thomas