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

Comparing Coro/Changes (file contents):
Revision 1.556 by root, Fri Apr 29 17:38:56 2011 UTC vs.
Revision 1.576 by root, Sun Jul 3 10:51:40 2011 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
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
6TODO: cancel calling another coro that cancels ourselves => crash (CF_DELAYCANCEL?) -> canceltest
7 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.
8 - implement Coro->cancel in XS for a 20% speed improvement, and to 33 - implement Coro->cancel in XS for a 20% speed improvement, and to
9 be able to implement mutual cancellation. 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.
10 - cancelling a coro while it itself is cancelling another coro is 39 - cancelling a coro while it itself is cancelling another coro is
11 now supported and working, instead of triggering an assertion. 40 now supported and working, instead of triggering an assertion.
12 - be a bit more crash-resistant when calling (buggy) on_destroy 41 - be a bit more crash-resistant when calling (buggy) on_destroy
13 callbacks (best effort). 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.
14 54
155.372 Wed Feb 23 06:14:30 CET 2011 555.372 Wed Feb 23 06:14:30 CET 2011
16 - apparently mingw doesn't provide a working gettimeofday, try to 56 - apparently mingw doesn't provide a working gettimeofday, try to
17 work around that by relying on Time::HiRes (indirectly brought to 57 work around that by relying on Time::HiRes (indirectly brought to
18 my attention by Max Maischein). 58 my attention by Max Maischein).

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines