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

Comparing Coro/Changes (file contents):
Revision 1.153 by root, Fri Nov 24 00:31:21 2006 UTC vs.
Revision 1.212 by root, Mon Mar 12 21:40:14 2007 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2 2
3TODO: check wether stack-sharing is still effective 3TODO: better (earlier) error messages on broken transfer's
4TODO: more effective stack sharing by having one "default stack" for "simple" coroutines? 4TODO: destroy gets only called on cancel: fix(?)
5TODO: verify exception frame changes and force stack copies?
6 5
63.52
7 - add count accessor to Coro::Semaphore.
8 - add Coro::State::cctx_stacksize.
9
103.51 Sun Mar 4 14:18:04 CET 2007
11 - fixed a problem when you weakened references to Coro::State's
12 (patch by Yuval Kogman).
13
143.501 Wed Feb 28 12:44:07 CET 2007
15 - rename some global symbols as macosx from hell redefines
16 them without asking.
17
183.5 Tue Feb 13 20:22:53 CET 2007
19 - do AnyEvent model detection earlier, avoiding problems
20 caused by first using AnyEvent and later Coro::Event.
21 - implement and document Coro::Event event objects.
22 - fix a potential problem in Coro::Event causing crashes.
23 - initialise PL_comppad when creating a new coroutine,
24 avoids crashes on early coro destruction.
25
263.41 Mon Jan 22 19:19:49 CET 2007
27 - readline on Coro::Handle did not support undefined $/,
28 nor did it deliver partial lines on EOF or error.
29 - implement malloc fallback for stack allocation because
30 stupid broken idiotic OSX has a stupid broken
31 idiotic fits-the-whole-os mmap "implementation" and
32 my dick feels longer if Coro is portable even to
33 obsolete platforms.
34
353.4 Fri Jan 19 21:52:54 CET 2007
36 - remove t/09_timer.t, as it isn't really testing much
37 but was rather flaky in practise.
38 - async_pool coro would keep arguments and callback alive until
39 it was reused.
40 - cancellation of a coroutine could cause spurious idle calls
41 in cede_notself.
42
433.3 Sat Jan 6 03:45:00 CET 2007
44 - implement $coro->on_destroy.
45 - Coro::Event blocking semantics have been changed,
46 documented and - hopefully - improved.
47 - fix nice adding, not subtracting, from priority.
48 - fix ->prio and api_is_ready (patch by Mark Hinds).
49 - fixed an assert ("... == prev__cctx->idle_te")
50 that could errronously trigger.
51 - fix various large and small memleaks.
52 - use a (hopefully) more stable cancel implementation
53 that immediately frees the coroutine data.
54 - cede/cede_notself return a status now.
55 - added Coro::guard function.
56 - added a global coroutine pool for jobs (on my machine,
57 I can create and execute 48k simple coros/s with async,
58 and 128k coros with async_pool).
59 - Coro::AIO now uses the coroutine priority as io priority.
60
613.2 Fri Dec 22 05:07:09 CET 2006
62 - improve portability to slightly older perls.
63 - use cleaner coroutine destruction.
64 - simplify configuration for users.
65 - optionally (unrecommended) prefer perl functions over
66 their coro replacements.
67
683.11 Tue Dec 5 13:11:24 CET 2006
69 - fixed some bogus assert's, but as perl.h disables assert even
70 without NDEBUG (thank you very much), not too many people should
71 notice (that did include myself). Andreas König noticed, though :)
72 - do not save/restore PL_sortcxix on >= 5.9.x, it doesn't seem to have
73 it. Also noticed by Andreas König :)
74 - save/restore tainted status.
75 - verified to pass the testsuite on my 5.9.5.
76
773.1 Mon Dec 4 23:03:40 CET 2006
78 - INCOMPATIBLE CHANGE: $/ is now per-coroutine (but slow).
79 - incompatible change: transfer flags are now per-state.
80 - give a better error message on deadlock.
81 - document Coro::nready.
82 - enhanced testsuite.
83
843.01 Sun Dec 3 23:47:42 CET 2006
85 - forgot to include Coro::Timer.
86
873.0 Sun Dec 3 22:57:25 CET 2006
88 - the "FINALLY COMPLETELY STABLE" release (coming soon:
89 the "FAMOUS LAST WORDS" release).
90 - implement a new stack sharing algorithm, which uses a stack
91 pool (size currently hardcoded).
92 - make stack sharing mandatory (it no longer uses a heuristic).
93 - eval/die no longer cause weird problems under heavy use.
7 - Coro::Event could cause livelocks if it was used but 94 - Coro::Event could cause livelocks if it was used but
8 Event watchers were used directly. 95 no Coro::Event watchers were used.
96 - Coro::Event now uses asynccheck as prepare does not
97 check for changed watchers.
98 - Coro::Event allows multiple waiting coros and will wake up one
99 per event.
9 - Coro::Event should be cleaner and more efficient now. 100 - Coro::Event should be cleaner and more efficient now.
10 - minor documentation cleanup. 101 - new utility function Coro::unblock_sub.
102 - document the sad fact that Event is no longer reentrant.
103 - putting a coroutine into the ready queue twice could under
104 some circumstances lead to stack corruption.
105 - minor incompatibility: subclassing Coro::State is supported
106 directly now without going through a _coro_state member.
107 - state/coro switching is much faster now.
11 - very minor optimisations and cleanups. 108 - very minor optimisations and code/documentation cleanup.
12 - avoid problems due to compiler inlining. 109 - avoid problems due to compiler inlining.
110 - removed timers from Coro::Timer -> use AnyEvent instead.
111 - replaced Coro::idle coroutine by (cleaner) idle handler.
112 - updated to newest libcoro.
113 - implement enhanced support for valgrind.
114 - implement is_ready and return value for ready.
115 - removed Coro::Cont, it was a misnomer (it's generators),
116 and it was somewhat annoying to get it right. Will come back
117 if somebody asks for it :)
118 - many ->wait methods and Coro::Event could return
119 spuriously without the event having happened.
13 120
142.5 Tue Nov 7 12:22:33 CET 2006 1212.5 Tue Nov 7 12:22:33 CET 2006
15 - made Coro::Util, Coro::Select, Coro::Handle and Coro::Socket 122 - made Coro::Util, Coro::Select, Coro::Handle and Coro::Socket
16 use AnyEvent, moved them to Coro/. 123 use AnyEvent, moved them to Coro/.
17 - added Coro::LWP which contains all the uglyness required to 124 - added Coro::LWP which contains all the uglyness required to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines