[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: ANN: Coco 1.1.1 released
- From: Mike Pall <mikelu-0606@...>
- Date: Tue, 20 Jun 2006 14:43:14 +0200
Hi,
this is a minor upgrade for Coco to patch cleanly against
Lua 5.1.1 and to fix some Windows Fibers issues.
Here is a link to the project home page with full docs:
http://luajit.luaforge.net/coco.html
And a direct link to the download page:
http://luajit.luaforge.net/download.html
What is Coco?
-------------
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.
Changes for Coco 1.1.1 -- 2006-06-20
------------------------------------
* Upgraded to patch cleanly into Lua 5.1.1.
* C stacks are deallocated early: when a coroutine ends, and not
when the coroutine object is collected. This mainly benefits
Windows Fibers.
* Windows threads get the required Fiber context when resuming
a coroutine and not just on creation.
Bye,
Mike