lua-users home
lua-l archive

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


Coco is a small extension to get True C Coroutine semantics for
Lua 5.1. True C coroutine semantics mean you can yield from a
coroutine across a C call boundary and resume back to it (e.g.
across pcall(), metamethods, iterators or callbacks).

Coco is free software, released under the same license as Lua.

Change list for version 1.1.7:
- Patch is now relative to Lua 5.1.5.
- Add setjmp method for iOS.
- Fix MIPS ABI detection.

Here is a link to the project home page with full docs:
  http://coco.luajit.org/

And a direct link to the download page:
  http://coco.luajit.org/download.html

--Mike