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

Comparing Coro/Changes (file contents):
Revision 1.507 by root, Wed Jul 1 11:33:25 2009 UTC vs.
Revision 1.672 by root, Thu Aug 31 16:28:49 2017 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: maybe implement a default message channel, very much like Erlang's
5 actor model (which is cool in a lot of important aspects (failures!),
6 but very lacking in others (higher level ipc)).
7TODO: unready_all
8TODO: myhttpd header parsing
9TODO: channel->maxsize(newsize)? 4TODO: channel->maxsize(newsize)?
5TODO: __GCC_HAVE_DWARF2_CFI_ASM
6TODO: swap_sv, maybe add scope_swap_sv?
7TODO: croak when async_pool tries to run canceled thread?
10 8
96.514 Thu Aug 31 18:25:31 CEST 2017
10 - safe_cancel no longer croaks when called on already-destroyed
11 thread, but instead "just works".
12
136.513 Sat Jul 15 01:18:51 CEST 2017
14 - experimental 5.22 comaptibility changes (PadlistNAMES).
15 - removed attributes example and made sure the other examples
16 still work.
17 - fix some statevar types for newer perls, should be of no consequence.
18
196.512 Fri Jul 14 05:03:17 CEST 2017
20 - seems to pass test suite down till 5.8.9, so make this the
21 minimum requirement in Makefile.PL.
22 - experimental 5.24 compatibility changes (SUB_ARGARRAY).
23 - experimental 5.26 compatibility changes (PL_comppad -> PADOFFSET).
24 - disable FORTIFY_SOURCE to avoid broken (but well-intentioned)
25 fortified longjmp variants in some libcs.
26 - re-try JIT allocation without PROT_EXEC, to hopefully improve
27 portability (still doesn't seem to work around broken selinux
28 mmap everywhere).
29 - speling fixes (Xavier Guimard).
30
316.511 Sun Jun 26 23:44:50 CEST 2016
32 - make it compile with threaded perls again.
33 - simplify and speed up __DIE__ and __WARN__ handling.
34
356.51 Sat Jun 25 20:57:20 CEST 2016
36 - 6.5 release didn't compile on most older perls due to
37 a logic error enabling experimental 5.24 code for all versions.
38 - since various broken or deficient patches float around
39 to work around the vtbl API breakage in perl, let's provide
40 our own workaround, which seems to be much less invasive
41 and more compatible than the approaches seen so far. YMMV.
42 - work around assertion failure in perl_destruct on 5.24
43 (analyzed by Dave Mitchell).
44
456.5 Wed Jun 22 22:23:50 CEST 2016
46 - swap_sv swapping order was not symmetrical, causing
47 wrong swaps when swap_sv was used multiple times on the
48 same sv in the same thread.
49 - swap_sv calls can now be undone by calling it again
50 with the same variables.
51 - swap_sv calls will now be undone in async_pool threads.
52 - split Coro::Semaphore::up/adjust into separate xs functions
53 for better error reporting, at slight codesize increase.
54 - (libcoro) arm assembly support, please test and report.
55 - adjust to PL_savestack changes in perl 5.24 (adapted from
56 the debian patch, which unfortunately gets it wrong).
57
586.49 Sat Oct 17 01:40:12 CEST 2015
59 - throwing an exception to a thread waiting in
60 Coro::Handle using Coro::EV did not stop the watchers,
61 causing the next call to fail (testcase by Martin Pritchard).
62 - bump minimum perl version to 5.10.
63
646.48 Sun Oct 4 19:03:51 CEST 2015
65 - fix memory leak when Coro::Handle uses Coro::EV internally
66 (testcase by Sten Sten).
67 - update code to libev 4 API (internally, Coro still used the
68 version 3 API calls).
69 - remove unused hv_sig.
70
716.47 Sat Jul 11 03:58:20 CEST 2015
72 - swap_svs - NVs can be in the SV head beginning with 5.20.
73
746.46 Tue Jun 30 14:36:30 CEST 2015
75 - restore portability to perls with windows fork emulation
76 (patch by Petr Písař).
77
786.45 Tue Jun 30 01:40:08 CEST 2015
79 - restore portability to perl 5.16 and below.
80
816.44 Tue Jun 30 00:41:54 CEST 2015
82 - avoid segfaulting (or worse) when tracing a canceled thread.
83 - the Event module silently broke it's public hook API, causing
84 failures on perls compiled with -Duselongdouble. Requiring
85 the latest version of Event because I don't know which release
86 changed this (it's not mentioned in the ChangeLog).
87 - allow xs level enterleave hooks via CoroAPI.
88
896.43 Thu Jun 4 15:38:14 CEST 2015
90 - use stability canary.
91 - port to stableperl-5.22.0-1.001.
92 - update libecb.
93
946.42 Wed Feb 11 20:29:52 CET 2015
95 - Coro::SemaphoreSet->try did not actually work (analyzed by
96 SATO Kentaro).
97 - upgrade libecb to be C11 compliant.
98
996.41 Sat Sep 6 22:08:46 CEST 2014
100 - restore portability to perl 5.8.x.
101 - give new Coro's a valid GvHV(PL_hintgv) - this is slow and takes
102 up some memory, but fixes "use feature" and similar modules
103 when used inside a Coro.
104 - allow zero as argument to Coro::Channel to mean the same thing
105 as no argument. this works with older versions as well,
106 but wasn't legal until now.
107 - slightly better c header file detection.
108
1096.39 Mon Jun 2 00:00:08 CEST 2014
110 - work around more incompatible changes in 5.20.
111
1126.38 Sun Jun 1 21:54:23 CEST 2014
113 - check that perl slots actually have enough space to hold
114 interpreter variables.
115 - untested port to perl 5.19 (64 bit tmps indices) (reported
116 by Andreas König).
117 - croak when cancel is called without a thread context.
118
1196.37 Tue Mar 4 13:27:33 CET 2014
120 - *sigh*, removed leftover debugging code from debugging a
121 perl bug, of all things.
122
1236.36 Tue Mar 4 07:11:59 CET 2014
124 - semaphores would not clear the destroy hook when interrupted
125 by ->throw, causing segfaults or worse.
126 - ->throw on a thread waiting for a semaphore did not acquire
127 the semaphore, but also didn't wake up other waiters,
128 possibly causing a deadlock.
129 - "FATAL: $Coro::IDLE blocked itself" will now use Carp::confess
130 to report a full stacktrace, which should help find out
131 where the actual call is.
132 - "atomically" destroy data in slf_destroy, because it is
133 the right thing to do, just in case.
134 - disable ecb.h libm dependency, to compile on ancient systems
135 or under adverse conditions.
136
1376.33 Mon Nov 18 11:26:27 CET 2013
138 - do not crash when freeing padlists with holes (in 5.18).
139 - tentative SVt_BIND 5.19 port/fix.
140
1416.32 Tue Nov 5 15:35:35 CET 2013
142 - use a new algorithm to derive padlists for perl 5.18. The old
143 one could lead to 0-pointer accesses inside perl (reported
144 by Darin McBride).
145
1466.31 Thu May 9 07:39:48 CEST 2013
147 - Coro::AIO requests would crash if the thread was ready'd
148 while the request was ongoing.
149
1506.29 Wed May 8 02:55:18 CEST 2013
151 - when an on_destroy handler destructs the coro currently being
152 destructed a perl scalar could be accessed after being freed,
153 likely causing a crash.
154
1556.28 Wed Mar 6 06:58:02 CET 2013
156 - clean remnants of existing __DIE__ and __WARN__ handlers so
157 they lose their magic and will not cause segfaults later
158 (testcase by Andrey Sagulin).
159 - improved Coro::State documentation a bit.
160 - Coro::Debug::command now flushes the output.
161 - add hack detection code for x32 abi, because the braindead slugs
162 who designed that made it look exactly like x86_64 without
163 providing proper compile time symbols to test for it. as a result,
164 this detection cannot work reliably.
165 - valgrind stack registering was broken.
166 - do not rely on Time::HiRes anymore in Coro::Debug.
167
1686.23 Fri Dec 7 23:36:37 CET 2012
169 - use experimental fiber implementation on native windows
170 perls.
171 - use sizeof (void *) as multiplication factor for stack sizes,
172 to accomodate the totally braindamaged microsoft 64 bit "os".
173 - changed verifier host from win2k-ap510-32 to win7-sp516-32/64.
174 activeperl 5.16 crashes when PerlIO_define_layer is called due
175 to some bug in the perl dll, strawberry perl at least passes
176 the testsuite.
177 - implement Coro::Handle->peeraddr/host/port, for slightly
178 improved compatibility with LWP.
179 - implement 5.17 compatibility by almost blindly applying a
180 good-looking patch by Father Chrysostomos.
181 - move stack management functions into libcoro 3.
182 - libcoro version 3 "released".
183 - support magic values as timed_io_once args.
184 - recommend AnyEvent 7+ or EV 4+, also require EV
185 version 4 or newer for Coro::EV.
186
1876.10 Tue Oct 9 01:14:27 CEST 2012
188 - updated ecb.h, it had a typo that caused it to not compile on many
189 big endian systems (reported by many people).
190 - disable memory fences in ecb.h to improve portability.
191
1926.09 Sat Oct 6 23:25:02 CEST 2012
193 - Coro::EV I/O watchers were not interruptible by exceptions
194 (Coro::State::throw) (testcase by sten).
195 - ->throw now puts threads into the ready queue, as this seems to
196 be expected by existing code, and code that doesn't cope with spurious
197 wakeups needs fixing anyway.
198 - use fd -1 in mmap.
199 - cast I32 to int in error message printf.
200 - warn about broken so-called "hardened" kernels.
201
2026.08 Fri Apr 13 12:05:47 CEST 2012
203 - be more aggressive about exiting like perl does - formerly,
204 exiting from the non-main thread would not execute END blocks.
205
2066.07 Fri Nov 11 21:21:48 CET 2011
207 - work around a bug in PerlIO (setting $SIG{__WARN__} to a PVCV).
208 - update ecb.h.
209
2106.06 Mon Aug 8 23:59:48 CEST 2011
211 - cygwin unfortunately patches the stack at runtime, so we use the pthreads
212 backend, which is an order of magnitude slower. unfortunately, cygwins
213 pthread implementation isn't very complete either, so allocate the stack
214 twice just to be sure.
215 (note: cygwin also enables mymalloc, which is NOT THREADSAFE ON WINDOWS,
216 in its ithreaded perl - best recompile cygwin and use the 'w'indows
217 backend for much better performance. also disable ithreads for
218 even better performance...).
219
2206.05 Thu Aug 4 21:36:36 CEST 2011
221 - blush, condvar values would not be propagated from send to recv anymore
222 (reported by Chip Salzenberg).
223 - use exponential increase for the readline buffer length in
224 Coro::Handle. also reduce initial allocation to 1020 from 4096 bytes.
225
2266.04 Wed Aug 3 17:15:45 CEST 2011
227 - use even more efficient and more compatible condvars for
228 compatibility to AnyEvent 6.x :)
229 - more inconsequential ecb.h updates.
230
2316.03 Wed Aug 3 11:41:30 CEST 2011
232 - change how Coro patches AnyEvent condvars for compatibility to
233 AnyEvent 6.x.
234 - update ecb.h, to no longer include <pthread.h> in case WinNT.h
235 hasn't been included.
236
2376.02 Wed Jul 13 04:35:19 CEST 2011
238 - "improve portability to Gentoo" - gentoo manages to put perl variables
239 in memory areas that are farther than 2gb apart, which the jit couldn't
240 handle and barfed. now it's just a bit slower on gentoo and similar
241 systems.
242
2436.01 Sun Jul 3 12:31:14 CEST 2011
244 - workarounds are good, but the test for whether pthreads are used
245 was not good. this one should be better.
246 - check differently whether gcc generates cfi instructions itself.
247
2486.0 Wed Jun 29 19:43:35 CEST 2011
249 - INCOMPATIBLE CHANGE: unreferenced coro objects will now be
250 destroyed and cleaned up automatically (e.g. async { schedule }).
251 - implement a JIT compiler for part of the thread switch code,
252 which gives a 50% speed improvement on threaded perls, and
253 about 4% on non-threaded perls (so threaded perls now finally
254 reach about half the speed of non-threaded perls).
255 - slightly modernise Coro::Intro, add section about rouse functions.
256 - avoid DEFSV and ERRSV, giving another 10% improvement
257 in thread switching.
258 - Coro::State->is_destroyed is now called is_zombie.
259 - implement a Coro->safe_cancel method that might fail, but
260 cancels in a "safer" way if it succeeds.
261 - add preliminary support for DEBUGGING perls.
262 - get rid of two hash-accesses when initialising a new Coro - this
263 speeds up coro creation by almost a factor of two.
264 - croak when a coro that is being cancelled tries to block
265 (e.g. while executing a guard block), instead of crashing or
266 deadlocking.
267 - use a more robust and also faster method to identify Coro::State
268 objects - speeds up everything a bit.
269 - implement Coro->cancel in XS for a 20% speed improvement, and to
270 be able to implement mutual cancellation.
271 - speed up context switches by a percent or two by more efficiently
272 allocating context stack entries.
273 - implement Coro->join and Coro->on_destroy in XS for a speedup and
274 a reduction in memory use.
275 - cancelling a coro while it itself is cancelling another coro is
276 now supported and working, instead of triggering an assertion.
277 - be a bit more crash-resistant when calling (buggy) on_destroy
278 callbacks (best effort).
279 - move on_destroy into the slf_frame, to allow extension slf
280 functions to have destructors.
281 - get rid if coro refcounting - simply crash in other interpreter
282 threads by nulling the pointers on clone.
283 - simplify warn/die hook handling when loading Coro - the convoluted
284 logic seems to be no longer neccessary.
285 - use libecb instead of our own home-grown gcc hacks.
286 - document alternatives to Coro::LWP. Please use them :)
287 - work around another mindless idiotic NEEDLESS bug in openbsd/mirbsds
288 sigaltstack. Really. wine suffers from it, erlang suffers from it,
289 and it's known since at least 2006.
290
2915.372 Wed Feb 23 06:14:30 CET 2011
292 - apparently mingw doesn't provide a working gettimeofday, try to
293 work around that by relying on Time::HiRes (indirectly brought to
294 my attention by Max Maischein).
295 - fix some portability issues when Time::HiRes was used.
296
2975.371 Mon Feb 21 14:36:08 CET 2011
298 - backport to windows process emulation code again.
299
3005.37 Sat Feb 19 07:49:44 CET 2011
301 - add a big "Coro thread life cycle" section to "man Coro".
302 - try a tentative workaround against the breakage that 5.13 has
303 introduced without depreciation period. sigh.
304 - no longer use Time::HiRes if gettimeofday is available, which
305 saves quite a lot of memory.
306
3075.36 Sun Feb 13 05:33:41 CET 2011
308 - automatically load Coro::Channel, Coro::RWLock, Coro::Semaphore,
309 Coro::SemaphoreSet, Coro::Signal and Coro::Specific on first "new"
310 method call.
311 - undocument Coro::Timer::sleep and obsolete whole module.
312 - optimise Coro::Timer::timeout memory and cpu usage.
313 - slightly updated Coro::Intro for recent changes.
314 - do not initialise PL_dirty anymore.
315
3165.25 Thu Nov 11 01:08:39 CET 2010
317 - try a different approach on netbsd - netbsd 5 finally has marginally
318 working pthreads, but still broken ucontext/sigaltstack.
319 - openbsd 4.8 finally got their act together, Coro works out of the box
320 with asm, setjmp and pthreads (no change, just informational).
321
3225.24 Sat Oct 23 11:27:12 CEST 2010
323 - port to the EV 4.0 API.
324 - work around bugs in mingw32, making strawberry perl work
325 out of the box.
326 - correctly modify Coro::AIO function prototypes
327 so that they reflect the "no optional parameters" rule.
328 - "ported" libcoro to C++.
329
3305.23 Mon May 17 18:50:42 CEST 2010
331 - be more resistant to ordering changes when initialising
332 Coro::AnyEvent, Coro::EV and Coro::Event (reported by Matthias
333 Waldorf).
334 - document that perl 5.12 deliberately removed support for cloning.
335
3365.22 Wed Apr 14 03:55:35 CEST 2010
337 - correctly return udnef on errors in Coro::Handle::read/write
338 (testcase by Marc Mims).
339 - convert Coro::Util into a "perl compatibility wrapper" - the functions
340 are less useful now, but are drop-in replacements for existing
341 functions, listing better alternatives in the documentation. This also
342 fixes a bug in Coro::LWP which naively substituted Socket::inet_aton
343 with Coro::Util::inet_aton.
344 - do not override $Coro::idle unconditionally in Coro.pm, as other
345 modules could have provided their own idle coro already
346 (for exmaple, Coro::AnyEvent).
347 - fix Coro::Util::gethost* functions.
348 - Coro::Timer corretcly exports it's symbols (reported by Hideki Yamamura).
349
3505.21 Wed Dec 16 07:19:51 CET 2009
351 - automatically load Coro::AnyEvent when AnyEvent and Coro are used
352 together.
353 - add some examples on how to combine other event loops with Coro in
354 Coro::AnyEvent, and how to run it (and not to block). Seems to be
355 the most common source of confusion.
356 - try to catch people naively blocking in an event callback.
357 - work around the perl filehandle bug issue in conjunction with
358 older common::sense (as indirectly pointed out by ZSystem).
359 - clarify the "not from signal handlers" section.
360
3615.2 Sun Oct 4 14:54:24 CEST 2009
362 - Coro::Storable destroyed the prototypes of the functions it wrapped.
363 - export rouse_cb and rouse_wait by default now.
364 - fix various prototype mismatches in Coro::AnyEvent and Coro::Handle.
365 - new method $state->swap_sv.
366 - added section on "windows process emulation" to the manpage,
367 after a not-so-fruitful (nor-friendly) "discussion" with chip
368 salzenberg (discussion implies arguments, but his only arguments
369 were ad-hominems, one wonders why he started it in the first
370 place). I hope this explains it well enough for him to understand,
371 and maybe well enough for others to understand.
372 - use common::sense everywhere now.
373 - idle callbacks are no longer supported, use idle coros instead.
374 - print a thread listing when a deadlock is detected.
375
3765.17 Sat Aug 22 23:09:31 CEST 2009
377 - work around a bug in the perl debugger causing crashes
378 when running under the debugger by marking _pool_handler as nodebug.
379 - speed up Coro::async considerably.
380 - try some hacks to get netbsd to work "more often" - their broken
381 setjmp/longjmp, ucontext *and* phtreads are really hard on Coro.
382 - convert Coro to AE 5.0 API.
383
3845.162 Tue Jul 28 04:04:03 CEST 2009
385 - perl 5.8.2 is now minimum requirement.
386 - skip t/19_handle.t on broken windows perls.
387
3885.161 Wed Jul 22 04:47:38 CEST 2009
389 - Coro::AnyEvent::poll could have a different prototype when EV was
390 used as backend (analyzed by Tatsuhiko Miyagawa).
391 - Coro::AnyEvent errornously initialised the event loop when loaded,
392 not on demand.
393 - try to workaround rare */t/01_unblock.t failures.
394
3955.16 Tue Jul 21 01:44:37 CEST 2009
396 - Coro::AnyEvent failed to hook into the event loop
397 when no threads had been readied between detecting
398 the event loop and actually running it.
399 - considerably speed up Coro::Select by taking avdantage
400 of AnyEvent > 4.8 and some other optimisations.
401 - implement paragraph readline mode in Coro::Handle
402 (based on patches by Zsbán Ambrus).
403 - replace WSAEINPROGRESS by WSAEWOULDBLOCK (reported
404 and analyzed by Yasuhiro MATSUMOTO).
405 - clarified libcoro license and copyright.
406 - someone stole my EXTRA_META!!!
407 - implement Coro::Select::patch_pp_sselect and it's brother,
408 for hardcode select overriding.
409
4105.151 Mon Jul 6 05:41:57 CEST 2009
11 - backport to windows process emulation code again (patch by 411 - backport to windows process emulation code again (patch by
12 Yasuhiro MATSUMOTO). 412 Yasuhiro MATSUMOTO).
13 - slightly update Coro::MakeMaker. 413 - slightly update Coro::MakeMaker.
14 414
155.15 Tue Jun 30 10:28:06 CEST 2009 4155.15 Tue Jun 30 10:28:06 CEST 2009
212 - ->throw is now supported on Coro::State objects. 612 - ->throw is now supported on Coro::State objects.
213 - clean up cctx creation code a bit. 613 - clean up cctx creation code a bit.
214 - entersub is actually a UNOP, not a LOGOP (not a bugfix). 614 - entersub is actually a UNOP, not a LOGOP (not a bugfix).
215 615
2164.9 Sat Nov 8 17:45:27 CET 2008 6164.9 Sat Nov 8 17:45:27 CET 2008
217 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there). 617 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there).
218 - (libcoro) no longer leak threads in the experimental pthread backend, 618 - (libcoro) no longer leak threads in the experimental pthread backend,
219 also speed it up considerably. 619 also speed it up considerably.
220 - (libcoro) do not rely on makecontext passing void *'s unscathed. 620 - (libcoro) do not rely on makecontext passing void *'s unscathed.
221 - fix compiletime dependencies on libcoro in the Makefile. 621 - fix compiletime dependencies on libcoro in the Makefile.
222 - cctx_count wasn't always updated properly. 622 - cctx_count wasn't always updated properly.
284 - remove debugging code related to MgPV_nolen_const, also try to 684 - remove debugging code related to MgPV_nolen_const, also try to
285 make it compile with perl 5.8.6 (yes, apple apparently loves 685 make it compile with perl 5.8.6 (yes, apple apparently loves
286 outdated software). Reported by John S. 686 outdated software). Reported by John S.
287 687
2884.744 Tue Jul 8 22:06:35 CEST 2008 6884.744 Tue Jul 8 22:06:35 CEST 2008
289 - correctly provide default DIE/WARN handlers as documented. 689 - correctly provide default DIE/WARN handlers as documented.
290 - also overwrite PL_vtbl_sigelem.svt_clear, even though current 690 - also overwrite PL_vtbl_sigelem.svt_clear, even though current
291 implementations inside perl work fine for us. 691 implementations inside perl work fine for us.
292 692
2934.743 Mon Jun 16 00:21:57 CEST 2008 6934.743 Mon Jun 16 00:21:57 CEST 2008
294 - when using Coro::EV without running EV::loop it could 694 - when using Coro::EV without running EV::loop it could
316 - sprinkle "no warnings" freely over everything, also suppress 716 - sprinkle "no warnings" freely over everything, also suppress
317 warnings for some other modules. 717 warnings for some other modules.
318 - fix typo in WSAEWOULDBLOCK. 718 - fix typo in WSAEWOULDBLOCK.
319 719
3204.72 Sun May 25 05:14:36 CEST 2008 7204.72 Sun May 25 05:14:36 CEST 2008
321 - tweak META.yaml a bit, unfortunately, there is no documented way 721 - tweak META.yaml a bit, unfortunately, there is no documented way
322 to have optional dependencies with CPAN. doh :( 722 to have optional dependencies with CPAN. doh :(
323 - avoid running some tests on windows because they would fail due to 723 - avoid running some tests on windows because they would fail due to
324 perl bug (broken fork, broken pipes...). 724 perl bug (broken fork, broken pipes...).
325 - work around perl on windows bugs where perl returns undocumented 725 - work around perl on windows bugs where perl returns undocumented
326 error codes for sysread, syswrite etc. by taking advantage 726 error codes for sysread, syswrite etc. by taking advantage
330 - use unix domain sockets in testsuite to work around 730 - use unix domain sockets in testsuite to work around
331 common perl implementation bugs on widows (they are emulated by 731 common perl implementation bugs on widows (they are emulated by
332 tcp sockets on windows. ugh.) 732 tcp sockets on windows. ugh.)
333 733
3344.71 Sat May 24 20:01:27 CEST 2008 7344.71 Sat May 24 20:01:27 CEST 2008
335 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()"). 735 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()").
336 - take advantage of async name resolution of AnyEvent::Util. 736 - take advantage of async name resolution of AnyEvent::Util.
337 - work around brutal inet_aton override in Coro::LWP. 737 - work around brutal inet_aton override in Coro::LWP.
338 - take advantage of the readyhook in Coro::EV, for smoother 738 - take advantage of the readyhook in Coro::EV, for smoother
339 scheduling. 739 scheduling.
340 740
3414.7 Sun May 11 00:32:19 CEST 2008 7414.7 Sun May 11 00:32:19 CEST 2008
342 - completely reworked the Coro manpage. 742 - completely reworked the Coro manpage.
343 - added Coro::AnyEvent, generic event loop integration. 743 - added Coro::AnyEvent, generic event loop integration.
344 - implement cancel, ready and kill commands in Coro::Debug. 744 - implement cancel, ready and kill commands in Coro::Debug.
345 - document find_coro in Coro::Debug. 745 - document find_coro in Coro::Debug.
346 - incompatible change: rename has_stack to has_cctx. 746 - incompatible change: rename has_stack to has_cctx.
347 - Coro::AIO and Coro::BDB no longer force event model detection, 747 - Coro::AIO and Coro::BDB no longer force event model detection,
348 use AnyEvent::AIO and AnyEvent::BDB. 748 use AnyEvent::AIO and AnyEvent::BDB.
472 872
4734.11 Thu Oct 11 02:40:24 CEST 2007 8734.11 Thu Oct 11 02:40:24 CEST 2007
474 - port to threaded perls. 874 - port to threaded perls.
475 875
4764.1 Thu Oct 11 02:38:16 CEST 2007 8764.1 Thu Oct 11 02:38:16 CEST 2007
477 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now 877 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now
478 be local to each coro (see Coro::State). 878 be local to each coro (see Coro::State).
479 - incompatible change: for very deep reasons, cede and cede_notself 879 - incompatible change: for very deep reasons, cede and cede_notself
480 cannot return anything, so nothing will be returned. 880 cannot return anything, so nothing will be returned.
481 - possibly bring back 5.10 compatibility (untested). 881 - possibly bring back 5.10 compatibility (untested).
482 - work around stupid (and wrong) warning on 5.10 :(. 882 - work around stupid (and wrong) warning on 5.10 :(.
554 but stateful semantics. 954 but stateful semantics.
555 - fixed a lot of typos in Coro.pm (patch submitted by David 955 - fixed a lot of typos in Coro.pm (patch submitted by David
556 Steinbrunner, which applied flawlessly). 956 Steinbrunner, which applied flawlessly).
557 957
5583.6 Sat Apr 14 17:13:31 CEST 2007 9583.6 Sat Apr 14 17:13:31 CEST 2007
559 - added some bugfixes to get eg/myhttpd working again. 959 - added some bugfixes to get eg/myhttpd working again.
560 - added Coro::Storable for often-cede'ing freeze/thaw. 960 - added Coro::Storable for often-cede'ing freeze/thaw.
561 - try to do a clean exit when a coroutine calls exit 961 - try to do a clean exit when a coroutine calls exit
562 (EXPERIMENTAL). 962 (EXPERIMENTAL).
563 - got rid of indirect call through _coro_init. 963 - got rid of indirect call through _coro_init.
564 - updated the partly antique examples in eg/ to 964 - updated the partly antique examples in eg/ to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines