ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Changes
(Generate patch)

Comparing Coro/Changes (file contents):
Revision 1.550 by root, Sat Feb 19 05:42:45 2011 UTC vs.
Revision 1.576 by root, Sun Jul 3 10:51:40 2011 UTC

2 2
3TODO: should explore PerlIO::coroaio (perl leaks like hell). 3TODO: should explore PerlIO::coroaio (perl leaks like hell).
4TODO: channel->maxsize(newsize)? 4TODO: channel->maxsize(newsize)?
5TODO: http://www.microsoft.com/msj/archive/s2ce.aspx 5TODO: http://www.microsoft.com/msj/archive/s2ce.aspx
6 6
76.01 Sun Jul 3 12:31:14 CEST 2011
8 - workarounds are good, but the test for whether pthreads are used
9 was not good. thisone should be better.
10 - check differently whether gcc generates cfi instructions itself.
11
126.0 Wed Jun 29 19:43:35 CEST 2011
13 - INCOMPATIBLE CHANGE: unreferenced coro objects will now be
14 destroyed and cleaned up automatically (e.g. async { schedule }).
15 - implement a JIT compiler for part of the thread switch code,
16 which gives a 50% speed improvement on threaded perls, and
17 about 4% on non-thraeded perls (so threaded perls now finally
18 reach about half the speed of non-threaded perls).
19 - slightly modernise Coro::Intro, add section about rouse functions.
20 - avoid DEFSV and ERRSV, giving another 10% improvement
21 in thread switching.
22 - Coro::State->is_destroyed is now called is_zombie.
23 - implement a Coro->safe_cancel method that might fail, but
24 cancels in a "safer" way if it succeeds.
25 - add preliminary support for DEBUGGING perls.
26 - get rid of two hash-accesses when initialising a new Coro - this
27 speeds up coro creation by almost a factor of two.
28 - croak when a coro that is being cancelled tries to block
29 (e.g. while executing a guard block), instead of crashing or
30 deadlocking.
31 - use a more robust and also faster method to identify Coro::State
32 objects - speeds up everything a bit.
33 - implement Coro->cancel in XS for a 20% speed improvement, and to
34 be able to implement mutual cancellation.
35 - speed up context switches by a percent or two by more efficiently
36 allocating context stack entries.
37 - implement Coro->join and Coro->on_destroy in XS for a speedup and
38 a reduction in memory use.
39 - cancelling a coro while it itself is cancelling another coro is
40 now supported and working, instead of triggering an assertion.
41 - be a bit more crash-resistant when calling (buggy) on_destroy
42 callbacks (best effort).
43 - move on_destroy into the slf_frame, to allow extension slf
44 functions to have destructors.
45 - get rid if coro refcounting - simply crash in other interpreter
46 threads by nulling the pointers on clone.
47 - simplify warn/die hook handling when loading Coro - the convoluted
48 logic seems to be no longer neccessary.
49 - use libecb instead of our own home-grown gcc hacks.
50 - document alternatives to Coro::LWP. Please use them :)
51 - work around another mindless idiotic NEEDLESS bug in openbsd/mirbsds
52 sigaltstack. Really. wine suffers from it, erlang suffers from it,
53 and it's known since at least 2006.
54
555.372 Wed Feb 23 06:14:30 CET 2011
56 - apparently mingw doesn't provide a working gettimeofday, try to
57 work around that by relying on Time::HiRes (indirectly brought to
58 my attention by Max Maischein).
59 - fix some portability issues when Time::HiRes was used.
60
615.371 Mon Feb 21 14:36:08 CET 2011
62 - backport to windows process emulation code again.
63
645.37 Sat Feb 19 07:49:44 CET 2011
7 - add a big "Coro thread life cycle" section to "man Coro". 65 - add a big "Coro thread life cycle" section to "man Coro".
8 - try a tentative workaround against the breakage that 5.13 has 66 - try a tentative workaround against the breakage that 5.13 has
9 introduced without depreciation period. sigh. 67 introduced without depreciation period. sigh.
68 - no longer use Time::HiRes if gettimeofday is available, which
69 saves quite a lot of memory.
10 70
115.36 Sun Feb 13 05:33:41 CET 2011 715.36 Sun Feb 13 05:33:41 CET 2011
12 - automatically load Coro::Channel, Coro::RWLock, Coro::Semaphore, 72 - automatically load Coro::Channel, Coro::RWLock, Coro::Semaphore,
13 Coro::SemaphoreSet, Coro::Signal and Coro::Specific on first "new" 73 Coro::SemaphoreSet, Coro::Signal and Coro::Specific on first "new"
14 method call. 74 method call.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines