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

Comparing Coro/Changes (file contents):
Revision 1.114 by root, Tue Nov 29 10:45:32 2005 UTC vs.
Revision 1.204 by root, Tue Jan 23 15:55:45 2007 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2TODO: Coro::Select (select) and "" both don'T work
3 2
3TODO: better (earlier) error messages on broken transfer's
4TODO: destroy gets only called on cancel: fix(?)
5TODO: fast reloads in cf cause segfaults (coro_state_free->destroy->crash)
6
7 - do AnyEvent model detection earlier, avoiding problems
8 caused by first using AnyEvent and later Coro::Event.
9
103.41 Mon Jan 22 19:19:49 CET 2007
11 - readline on Coro::Handle did not support undefined $/,
12 nor did it deliver partial lines on EOF or error.
13 - implement malloc fallback for stack allocation because
14 stupid broken idiotic OSX has a stupid broken
15 idiotic fits-the-whole-os mmap "implementation" and
16 my dick feels longer if Coro is portable even to
17 obsolete platforms.
18
193.4 Fri Jan 19 21:52:54 CET 2007
20 - remove t/09_timer.t, as it isn't really testing much
21 but was rather flaky in practise.
22 - async_pool coro would keep arguments and callback alive until
23 it was reused.
24 - cancellation of a coroutine could cause spurious idle calls
25 in cede_notself.
26
273.3 Sat Jan 6 03:45:00 CET 2007
28 - implement $coro->on_destroy.
29 - Coro::Event blocking semantics have been changed,
30 documented and - hopefully - improved.
31 - fix nice adding, not subtracting, from priority.
32 - fix ->prio and api_is_ready (patch by Mark Hinds).
33 - fixed an assert ("... == prev__cctx->idle_te")
34 that could errronously trigger.
35 - fix various large and small memleaks.
36 - use a (hopefully) more stable cancel implementation
37 that immediately frees the coroutine data.
38 - cede/cede_notself return a status now.
39 - added Coro::guard function.
40 - added a global coroutine pool for jobs (on my machine,
41 I can create and execute 48k simple coros/s with async,
42 and 128k coros with async_pool).
43 - Coro::AIO now uses the coroutine priority as io priority.
44
453.2 Fri Dec 22 05:07:09 CET 2006
46 - improve portability to slightly older perls.
47 - use cleaner coroutine destruction.
48 - simplify configuration for users.
49 - optionally (unrecommended) prefer perl functions over
50 their coro replacements.
51
523.11 Tue Dec 5 13:11:24 CET 2006
53 - fixed some bogus assert's, but as perl.h disables assert even
54 without NDEBUG (thank you very much), not too many people should
55 notice (that did include myself). Andreas König noticed, though :)
56 - do not save/restore PL_sortcxix on >= 5.9.x, it doesn't seem to have
57 it. Also noticed by Andreas König :)
58 - save/restore tainted status.
59 - verified to pass the testsuite on my 5.9.5.
60
613.1 Mon Dec 4 23:03:40 CET 2006
62 - INCOMPATIBLE CHANGE: $/ is now per-coroutine (but slow).
63 - incompatible change: transfer flags are now per-state.
64 - give a better error message on deadlock.
65 - document Coro::nready.
66 - enhanced testsuite.
67
683.01 Sun Dec 3 23:47:42 CET 2006
69 - forgot to include Coro::Timer.
70
713.0 Sun Dec 3 22:57:25 CET 2006
72 - the "FINALLY COMPLETELY STABLE" release (coming soon:
73 the "FAMOUS LAST WORDS" release).
74 - implement a new stack sharing algorithm, which uses a stack
75 pool (size currently hardcoded).
76 - make stack sharing mandatory (it no longer uses a heuristic).
77 - eval/die no longer cause weird problems under heavy use.
78 - Coro::Event could cause livelocks if it was used but
79 no Coro::Event watchers were used.
80 - Coro::Event now uses asynccheck as prepare does not
81 check for changed watchers.
82 - Coro::Event allows multiple waiting coros and will wake up one
83 per event.
84 - Coro::Event should be cleaner and more efficient now.
85 - new utility function Coro::unblock_sub.
86 - document the sad fact that Event is no longer reentrant.
87 - putting a coroutine into the ready queue twice could under
88 some circumstances lead to stack corruption.
89 - minor incompatibility: subclassing Coro::State is supported
90 directly now without going through a _coro_state member.
91 - state/coro switching is much faster now.
92 - very minor optimisations and code/documentation cleanup.
93 - avoid problems due to compiler inlining.
94 - removed timers from Coro::Timer -> use AnyEvent instead.
95 - replaced Coro::idle coroutine by (cleaner) idle handler.
96 - updated to newest libcoro.
97 - implement enhanced support for valgrind.
98 - implement is_ready and return value for ready.
99 - removed Coro::Cont, it was a misnomer (it's generators),
100 and it was somewhat annoying to get it right. Will come back
101 if somebody asks for it :)
102 - many ->wait methods and Coro::Event could return
103 spuriously without the event having happened.
104
1052.5 Tue Nov 7 12:22:33 CET 2006
106 - made Coro::Util, Coro::Select, Coro::Handle and Coro::Socket
107 use AnyEvent, moved them to Coro/.
108 - added Coro::LWP which contains all the uglyness required to
109 make LWP non-blocking.
110 - should work with perl 5.9.x now (Andreas König made me do it).
111 - fixed another bug in Coro::Select when the timeout was undef.
112 - reuse PL_start_env for all coros, saves some memory per coroutine.
113 - manage PL_top_env differently, hopefully to avoid panic: top_env.
114 - timeout argument was not properly used in Coro::Socket.
115 - allow limited forms of subclassing in Coro::Handle/Coro::Socket.
116 - emulate undocumented(!) functionality of IO::Socket required
117 by LWP(!!).
118 - updated eg/lwp to work with newer lwp's.
119 - remove "FATAL: uncaught exception" prefix. Coroutines that die
120 kill the whole process, just as exceptions in the main "coroutine"
121 did already.
122
1232.1 Wed Nov 1 23:01:13 CET 2006
124 - fix a long-standing bug in Coro::Select where select with
125 zero timeout would instead change the current default filehandle.
126 - use a simpler and hopefully more robust way to clone padlists
127 (uses less memory and a perl function instead of our own).
128 - coro can now create a stack guard area on many architectures.
129 - Coro::AIO properly reexports additional functions from IO::AIO.
130 - updated libcoro with a workaround for OS X,
131 pach and testing by Michael Schwern.
132
1332.0 Tue Oct 24 05:47:17 CEST 2006
134 - support additional aio requests in Coro::AIO.
135
1361.9 (never properly released due to a glitch)
137
1381.8 Thu Feb 2 00:59:06 CET 2006
139 - applied suggested patch by SAMV to avoid problems during stupid
140 mark & sweep gc run.
141 - applied patch by Scott Walters for 5.9.3 compatibility.
142
1431.7 Tue Dec 27 01:41:58 CET 2005
144 - added Coro::AIO, a thin wrapper around IO::AIO.
145 - improved Makefile.PL explanations.
146
1471.6 Mon Dec 12 21:30:05 CET 2005
148 - additionally save PM_curpm might fix as-of-yet
149 unseen problems with regex matches being attributed to the
150 wrong package.
151 - add t/10_bugs.t, which currently checks against imho broken
152 perls that use 0.26MB of stack space per Perl_magic_get
153 invocation (newer linuxes) as opposed to the 0.0002MB perl
154 normally uses.
155 - make stacksize configurable for the ultimate debian experience.
156
1571.51 Mon Dec 12 18:48:36 CET 2005
158 - remove debugging warn() accidentally left in Coro::Select.
159
1601.5 Tue Nov 29 13:32:44 CET 2005
4 - use Coro::Event inside Coro::Select to avoid spurious deadlocks. 161 - use Coro::Event inside Coro::Select to avoid spurious deadlocks.
162 - fix Coro::Select 'select'.
163 - strict'ify some modules.
5 - libcoro errornously restored the SIGUSR2 handler to SIGUSR1. 164 - libcoro errornously restored the SIGUSR2 handler to SIGUSR1.
165 - use XSLoader in selected modules.
166 - remove some 5.6 compatibility cruft.
6 167
71.4 Tue Sep 6 00:11:05 CEST 2005 1681.4 Tue Sep 6 00:11:05 CEST 2005
8 - libcoro did not take into account the trampoline on amd64, 169 - libcoro did not take into account the trampoline on amd64,
9 when 'l'inux method was used. 170 when 'l'inux method was used.
10 171

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines