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

Comparing Coro/Changes (file contents):
Revision 1.530 by root, Fri Dec 11 18:32:23 2009 UTC vs.
Revision 1.666 by root, Fri Jul 14 02:55:09 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
11TODO: better error reporting when blocking inside the event idle loop? idleblock 9 - seems to pass test suite down till 5.8.9, so make this the
125.21 10 minimum requirement in Makefile.PL.
11 - experimental 5.24 compatibility changes (SUB_ARGARRAY).
12 - experimental 5.26 compatibility changes (PL_comppad -> PADOFFSET).
13 - disable FORTIFY_SOURCE to avoid broken (but well-intentioned)
14 fortified longjmp variants in some libcs.
15 - re-try JIT allocation without PROT_EXEC, to hopefully improve
16 portability (still doesn't seem to work around broken selinux
17 mmap everywhere).
18
196.511 Sun Jun 26 23:44:50 CEST 2016
20 - make it compile with threaded perls again.
21 - simplify and speed up __DIE__ and __WARN__ handling.
22
236.51 Sat Jun 25 20:57:20 CEST 2016
24 - 6.5 release didn't compile on most older perls due to
25 a logic error enabling experimental 5.24 code for all versions.
26 - since various broken or deficient patches float around
27 to work around the vtbl API breakage in perl, let's provide
28 our own workaround, which seems to be much less invasive
29 and more compatible than the approaches seen so far. YMMV.
30 - work around assertion failure in perl_destruct on 5.24
31 (analyzed by Dave Mitchell).
32
336.5 Wed Jun 22 22:23:50 CEST 2016
34 - swap_sv swapping order was not symmetrical, causing
35 wrong swaps when swap_sv was used multiple times on the
36 same sv in the same thread.
37 - swap_sv calls can now be undone by calling it again
38 with the same variables.
39 - swap_sv calls will now be undone in async_pool threads.
40 - split Coro::Semaphore::up/adjust into separate xs functions
41 for better error reporting, at slight codesize increase.
42 - (libcoro) arm assembly support, please test and report.
43 - adjust to PL_savestack changes in perl 5.24 (adapted from
44 the debian patch, which unfortunately gets it wrong).
45
466.49 Sat Oct 17 01:40:12 CEST 2015
47 - throwing an exception to a thread waiting in
48 Coro::Handle using Coro::EV did not stop the watchers,
49 causing the next call to fail (testcase by Martin Pritchard).
50 - bump minimum perl version to 5.10.
51
526.48 Sun Oct 4 19:03:51 CEST 2015
53 - fix memory leak when Coro::Handle uses Coro::EV internally
54 (testcase by Sten Sten).
55 - update code to libev 4 API (internally, Coro still used the
56 version 3 API calls).
57 - remove unused hv_sig.
58
596.47 Sat Jul 11 03:58:20 CEST 2015
60 - swap_svs - NVs can be in the SV head beginning with 5.20.
61
626.46 Tue Jun 30 14:36:30 CEST 2015
63 - restore portability to perls with windows fork emulation
64 (patch by Petr Písař).
65
666.45 Tue Jun 30 01:40:08 CEST 2015
67 - restore portability to perl 5.16 and below.
68
696.44 Tue Jun 30 00:41:54 CEST 2015
70 - avoid segfaulting (or worse) when tracing a canceled thread.
71 - the Event module silently broke it's public hook API, causing
72 failures on perls compiled with -Duselongdouble. Requiring
73 the latest version of Event because I don't know which release
74 changed this (it's not mentioned in the ChangeLog).
75 - allow xs level enterleave hooks via CoroAPI.
76
776.43 Thu Jun 4 15:38:14 CEST 2015
78 - use stability canary.
79 - port to stableperl-5.22.0-1.001.
80 - update libecb.
81
826.42 Wed Feb 11 20:29:52 CET 2015
83 - Coro::SemaphoreSet->try did not actually work (analyzed by
84 SATO Kentaro).
85 - upgrade libecb to be C11 compliant.
86
876.41 Sat Sep 6 22:08:46 CEST 2014
88 - restore portability to perl 5.8.x.
89 - give new Coro's a valid GvHV(PL_hintgv) - this is slow and takes
90 up some memory, but fixes "use feature" and similar modules
91 when used inside a Coro.
92 - allow zero as argument to Coro::Channel to mean the same thing
93 as no argument. this works with older versions as well,
94 but wasn't legal until now.
95 - slightly better c header file detection.
96
976.39 Mon Jun 2 00:00:08 CEST 2014
98 - work around more incompatible changes in 5.20.
99
1006.38 Sun Jun 1 21:54:23 CEST 2014
101 - check that perl slots actually have enough space to hold
102 interpreter variables.
103 - untested port to perl 5.19 (64 bit tmps indices) (reported
104 by Andreas König).
105 - croak when cancel is called without a thread context.
106
1076.37 Tue Mar 4 13:27:33 CET 2014
108 - *sigh*, removed leftover debugging code from debugging a
109 perl bug, of all things.
110
1116.36 Tue Mar 4 07:11:59 CET 2014
112 - semaphores would not clear the destroy hook when interrupted
113 by ->throw, causing segfaults or worse.
114 - ->throw on a thread waiting for a semaphore did not acquire
115 the semaphore, but also didn't wake up other waiters,
116 possibly causing a deadlock.
117 - "FATAL: $Coro::IDLE blocked itself" will now use Carp::confess
118 to report a full stacktrace, which should help find out
119 where the actual call is.
120 - "atomically" destroy data in slf_destroy, because it is
121 the right thing to do, just in case.
122 - disable ecb.h libm dependency, to compile on ancient systems
123 or under adverse conditions.
124
1256.33 Mon Nov 18 11:26:27 CET 2013
126 - do not crash when freeing padlists with holes (in 5.18).
127 - tentative SVt_BIND 5.19 port/fix.
128
1296.32 Tue Nov 5 15:35:35 CET 2013
130 - use a new algorithm to derive padlists for perl 5.18. The old
131 one could lead to 0-pointer accesses inside perl (reported
132 by Darin McBride).
133
1346.31 Thu May 9 07:39:48 CEST 2013
135 - Coro::AIO requests would crash if the thread was ready'd
136 while the request was ongoing.
137
1386.29 Wed May 8 02:55:18 CEST 2013
139 - when an on_destroy handler destructs the coro currently being
140 destructed a perl scalar could be accessed after being freed,
141 likely causing a crash.
142
1436.28 Wed Mar 6 06:58:02 CET 2013
144 - clean remnants of existing __DIE__ and __WARN__ handlers so
145 they lose their magic and will not cause segfaults later
146 (testcase by Andrey Sagulin).
147 - improved Coro::State documentation a bit.
148 - Coro::Debug::command now flushes the output.
149 - add hack detection code for x32 abi, because the braindead slugs
150 who designed that made it look exactly like x86_64 without
151 providing proper compile time symbols to test for it. as a result,
152 this detection cannot work reliably.
153 - valgrind stack registering was broken.
154 - do not rely on Time::HiRes anymore in Coro::Debug.
155
1566.23 Fri Dec 7 23:36:37 CET 2012
157 - use experimental fiber implementation on native windows
158 perls.
159 - use sizeof (void *) as multiplication factor for stack sizes,
160 to accomodate the totally braindamaged microsoft 64 bit "os".
161 - changed verifier host from win2k-ap510-32 to win7-sp516-32/64.
162 activeperl 5.16 crashes when PerlIO_define_layer is called due
163 to some bug in the perl dll, strawberry perl at least passes
164 the testsuite.
165 - implement Coro::Handle->peeraddr/host/port, for slightly
166 improved compatibility with LWP.
167 - implement 5.17 compatibility by almost blindly applying a
168 good-looking patch by Father Chrysostomos.
169 - move stack management functions into libcoro 3.
170 - libcoro version 3 "released".
171 - support magic values as timed_io_once args.
172 - recommend AnyEvent 7+ or EV 4+, also require EV
173 version 4 or newer for Coro::EV.
174
1756.10 Tue Oct 9 01:14:27 CEST 2012
176 - updated ecb.h, it had a typo that caused it to not compile on many
177 big endian systems (reported by many people).
178 - disable memory fences in ecb.h to improve portability.
179
1806.09 Sat Oct 6 23:25:02 CEST 2012
181 - Coro::EV I/O watchers were not interruptible by exceptions
182 (Coro::State::throw) (testcase by sten).
183 - ->throw now puts threads into the ready queue, as this seems to
184 be expected by existing code, and code that doesn't cope with spurious
185 wakeups needs fixing anyway.
186 - use fd -1 in mmap.
187 - cast I32 to int in error message printf.
188 - warn about broken so-called "hardened" kernels.
189
1906.08 Fri Apr 13 12:05:47 CEST 2012
191 - be more aggressive about exiting like perl does - formerly,
192 exiting from the non-main thread would not execute END blocks.
193
1946.07 Fri Nov 11 21:21:48 CET 2011
195 - work around a bug in PerlIO (setting $SIG{__WARN__} to a PVCV).
196 - update ecb.h.
197
1986.06 Mon Aug 8 23:59:48 CEST 2011
199 - cygwin unfortunately patches the stack at runtime, so we use the pthreads
200 backend, which is an order of magnitude slower. unfortunately, cygwins
201 pthread implementation isn't very complete either, so allocate the stack
202 twice just to be sure.
203 (note: cygwin also enables mymalloc, which is NOT THREADSAFE ON WINDOWS,
204 in its ithreaded perl - best recompile cygwin and use the 'w'indows
205 backend for much better performance. also disable ithreads for
206 even better performance...).
207
2086.05 Thu Aug 4 21:36:36 CEST 2011
209 - blush, condvar values would not be propagated from send to recv anymore
210 (reported by Chip Salzenberg).
211 - use exponential increase for the readline buffer length in
212 Coro::Handle. also reduce initial allocation to 1020 from 4096 bytes.
213
2146.04 Wed Aug 3 17:15:45 CEST 2011
215 - use even more efficient and more compatible condvars for
216 compatibility to AnyEvent 6.x :)
217 - more inconsequential ecb.h updates.
218
2196.03 Wed Aug 3 11:41:30 CEST 2011
220 - change how Coro patches AnyEvent condvars for compatibility to
221 AnyEvent 6.x.
222 - update ecb.h, to no longer include <pthread.h> in case WinNT.h
223 hasn't been included.
224
2256.02 Wed Jul 13 04:35:19 CEST 2011
226 - "improve portability to Gentoo" - gentoo manages to put perl variables
227 in memory areas that are farther than 2gb apart, which the jit couldn't
228 handle and barfed. now it's just a bit slower on gentoo and similar
229 systems.
230
2316.01 Sun Jul 3 12:31:14 CEST 2011
232 - workarounds are good, but the test for whether pthreads are used
233 was not good. this one should be better.
234 - check differently whether gcc generates cfi instructions itself.
235
2366.0 Wed Jun 29 19:43:35 CEST 2011
237 - INCOMPATIBLE CHANGE: unreferenced coro objects will now be
238 destroyed and cleaned up automatically (e.g. async { schedule }).
239 - implement a JIT compiler for part of the thread switch code,
240 which gives a 50% speed improvement on threaded perls, and
241 about 4% on non-threaded perls (so threaded perls now finally
242 reach about half the speed of non-threaded perls).
243 - slightly modernise Coro::Intro, add section about rouse functions.
244 - avoid DEFSV and ERRSV, giving another 10% improvement
245 in thread switching.
246 - Coro::State->is_destroyed is now called is_zombie.
247 - implement a Coro->safe_cancel method that might fail, but
248 cancels in a "safer" way if it succeeds.
249 - add preliminary support for DEBUGGING perls.
250 - get rid of two hash-accesses when initialising a new Coro - this
251 speeds up coro creation by almost a factor of two.
252 - croak when a coro that is being cancelled tries to block
253 (e.g. while executing a guard block), instead of crashing or
254 deadlocking.
255 - use a more robust and also faster method to identify Coro::State
256 objects - speeds up everything a bit.
257 - implement Coro->cancel in XS for a 20% speed improvement, and to
258 be able to implement mutual cancellation.
259 - speed up context switches by a percent or two by more efficiently
260 allocating context stack entries.
261 - implement Coro->join and Coro->on_destroy in XS for a speedup and
262 a reduction in memory use.
263 - cancelling a coro while it itself is cancelling another coro is
264 now supported and working, instead of triggering an assertion.
265 - be a bit more crash-resistant when calling (buggy) on_destroy
266 callbacks (best effort).
267 - move on_destroy into the slf_frame, to allow extension slf
268 functions to have destructors.
269 - get rid if coro refcounting - simply crash in other interpreter
270 threads by nulling the pointers on clone.
271 - simplify warn/die hook handling when loading Coro - the convoluted
272 logic seems to be no longer neccessary.
273 - use libecb instead of our own home-grown gcc hacks.
274 - document alternatives to Coro::LWP. Please use them :)
275 - work around another mindless idiotic NEEDLESS bug in openbsd/mirbsds
276 sigaltstack. Really. wine suffers from it, erlang suffers from it,
277 and it's known since at least 2006.
278
2795.372 Wed Feb 23 06:14:30 CET 2011
280 - apparently mingw doesn't provide a working gettimeofday, try to
281 work around that by relying on Time::HiRes (indirectly brought to
282 my attention by Max Maischein).
283 - fix some portability issues when Time::HiRes was used.
284
2855.371 Mon Feb 21 14:36:08 CET 2011
286 - backport to windows process emulation code again.
287
2885.37 Sat Feb 19 07:49:44 CET 2011
289 - add a big "Coro thread life cycle" section to "man Coro".
290 - try a tentative workaround against the breakage that 5.13 has
291 introduced without depreciation period. sigh.
292 - no longer use Time::HiRes if gettimeofday is available, which
293 saves quite a lot of memory.
294
2955.36 Sun Feb 13 05:33:41 CET 2011
296 - automatically load Coro::Channel, Coro::RWLock, Coro::Semaphore,
297 Coro::SemaphoreSet, Coro::Signal and Coro::Specific on first "new"
298 method call.
299 - undocument Coro::Timer::sleep and obsolete whole module.
300 - optimise Coro::Timer::timeout memory and cpu usage.
301 - slightly updated Coro::Intro for recent changes.
302 - do not initialise PL_dirty anymore.
303
3045.25 Thu Nov 11 01:08:39 CET 2010
305 - try a different approach on netbsd - netbsd 5 finally has marginally
306 working pthreads, but still broken ucontext/sigaltstack.
307 - openbsd 4.8 finally got their act together, Coro works out of the box
308 with asm, setjmp and pthreads (no change, just informational).
309
3105.24 Sat Oct 23 11:27:12 CEST 2010
311 - port to the EV 4.0 API.
312 - work around bugs in mingw32, making strawberry perl work
313 out of the box.
314 - correctly modify Coro::AIO function prototypes
315 so that they reflect the "no optional parameters" rule.
316 - "ported" libcoro to C++.
317
3185.23 Mon May 17 18:50:42 CEST 2010
319 - be more resistant to ordering changes when initialising
320 Coro::AnyEvent, Coro::EV and Coro::Event (reported by Matthias
321 Waldorf).
322 - document that perl 5.12 deliberately removed support for cloning.
323
3245.22 Wed Apr 14 03:55:35 CEST 2010
325 - correctly return udnef on errors in Coro::Handle::read/write
326 (testcase by Marc Mims).
327 - convert Coro::Util into a "perl compatibility wrapper" - the functions
328 are less useful now, but are drop-in replacements for existing
329 functions, listing better alternatives in the documentation. This also
330 fixes a bug in Coro::LWP which naively substituted Socket::inet_aton
331 with Coro::Util::inet_aton.
332 - do not override $Coro::idle unconditionally in Coro.pm, as other
333 modules could have provided their own idle coro already
334 (for exmaple, Coro::AnyEvent).
335 - fix Coro::Util::gethost* functions.
336 - Coro::Timer corretcly exports it's symbols (reported by Hideki Yamamura).
337
3385.21 Wed Dec 16 07:19:51 CET 2009
13 - automatically load Coro::AnyEvent when AnyEvent and Coro are used 339 - automatically load Coro::AnyEvent when AnyEvent and Coro are used
14 together. 340 together.
15 - add some examples on how to combine other event loops with Coro in 341 - add some examples on how to combine other event loops with Coro in
16 Coro::AnyEvent. 342 Coro::AnyEvent, and how to run it (and not to block). Seems to be
343 the most common source of confusion.
344 - try to catch people naively blocking in an event callback.
345 - work around the perl filehandle bug issue in conjunction with
346 older common::sense (as indirectly pointed out by ZSystem).
17 - clarify the "not from signal handlers" section. 347 - clarify the "not from signal handlers" section.
18 348
195.2 Sun Oct 4 14:54:24 CEST 2009 3495.2 Sun Oct 4 14:54:24 CEST 2009
20 - Coro::Storable destroyed the prototypes of the functions it wrapped. 350 - Coro::Storable destroyed the prototypes of the functions it wrapped.
21 - export rouse_cb and rouse_wait by default now. 351 - export rouse_cb and rouse_wait by default now.
270 - ->throw is now supported on Coro::State objects. 600 - ->throw is now supported on Coro::State objects.
271 - clean up cctx creation code a bit. 601 - clean up cctx creation code a bit.
272 - entersub is actually a UNOP, not a LOGOP (not a bugfix). 602 - entersub is actually a UNOP, not a LOGOP (not a bugfix).
273 603
2744.9 Sat Nov 8 17:45:27 CET 2008 6044.9 Sat Nov 8 17:45:27 CET 2008
275 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there). 605 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there).
276 - (libcoro) no longer leak threads in the experimental pthread backend, 606 - (libcoro) no longer leak threads in the experimental pthread backend,
277 also speed it up considerably. 607 also speed it up considerably.
278 - (libcoro) do not rely on makecontext passing void *'s unscathed. 608 - (libcoro) do not rely on makecontext passing void *'s unscathed.
279 - fix compiletime dependencies on libcoro in the Makefile. 609 - fix compiletime dependencies on libcoro in the Makefile.
280 - cctx_count wasn't always updated properly. 610 - cctx_count wasn't always updated properly.
342 - remove debugging code related to MgPV_nolen_const, also try to 672 - remove debugging code related to MgPV_nolen_const, also try to
343 make it compile with perl 5.8.6 (yes, apple apparently loves 673 make it compile with perl 5.8.6 (yes, apple apparently loves
344 outdated software). Reported by John S. 674 outdated software). Reported by John S.
345 675
3464.744 Tue Jul 8 22:06:35 CEST 2008 6764.744 Tue Jul 8 22:06:35 CEST 2008
347 - correctly provide default DIE/WARN handlers as documented. 677 - correctly provide default DIE/WARN handlers as documented.
348 - also overwrite PL_vtbl_sigelem.svt_clear, even though current 678 - also overwrite PL_vtbl_sigelem.svt_clear, even though current
349 implementations inside perl work fine for us. 679 implementations inside perl work fine for us.
350 680
3514.743 Mon Jun 16 00:21:57 CEST 2008 6814.743 Mon Jun 16 00:21:57 CEST 2008
352 - when using Coro::EV without running EV::loop it could 682 - when using Coro::EV without running EV::loop it could
374 - sprinkle "no warnings" freely over everything, also suppress 704 - sprinkle "no warnings" freely over everything, also suppress
375 warnings for some other modules. 705 warnings for some other modules.
376 - fix typo in WSAEWOULDBLOCK. 706 - fix typo in WSAEWOULDBLOCK.
377 707
3784.72 Sun May 25 05:14:36 CEST 2008 7084.72 Sun May 25 05:14:36 CEST 2008
379 - tweak META.yaml a bit, unfortunately, there is no documented way 709 - tweak META.yaml a bit, unfortunately, there is no documented way
380 to have optional dependencies with CPAN. doh :( 710 to have optional dependencies with CPAN. doh :(
381 - avoid running some tests on windows because they would fail due to 711 - avoid running some tests on windows because they would fail due to
382 perl bug (broken fork, broken pipes...). 712 perl bug (broken fork, broken pipes...).
383 - work around perl on windows bugs where perl returns undocumented 713 - work around perl on windows bugs where perl returns undocumented
384 error codes for sysread, syswrite etc. by taking advantage 714 error codes for sysread, syswrite etc. by taking advantage
388 - use unix domain sockets in testsuite to work around 718 - use unix domain sockets in testsuite to work around
389 common perl implementation bugs on widows (they are emulated by 719 common perl implementation bugs on widows (they are emulated by
390 tcp sockets on windows. ugh.) 720 tcp sockets on windows. ugh.)
391 721
3924.71 Sat May 24 20:01:27 CEST 2008 7224.71 Sat May 24 20:01:27 CEST 2008
393 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()"). 723 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()").
394 - take advantage of async name resolution of AnyEvent::Util. 724 - take advantage of async name resolution of AnyEvent::Util.
395 - work around brutal inet_aton override in Coro::LWP. 725 - work around brutal inet_aton override in Coro::LWP.
396 - take advantage of the readyhook in Coro::EV, for smoother 726 - take advantage of the readyhook in Coro::EV, for smoother
397 scheduling. 727 scheduling.
398 728
3994.7 Sun May 11 00:32:19 CEST 2008 7294.7 Sun May 11 00:32:19 CEST 2008
400 - completely reworked the Coro manpage. 730 - completely reworked the Coro manpage.
401 - added Coro::AnyEvent, generic event loop integration. 731 - added Coro::AnyEvent, generic event loop integration.
402 - implement cancel, ready and kill commands in Coro::Debug. 732 - implement cancel, ready and kill commands in Coro::Debug.
403 - document find_coro in Coro::Debug. 733 - document find_coro in Coro::Debug.
404 - incompatible change: rename has_stack to has_cctx. 734 - incompatible change: rename has_stack to has_cctx.
405 - Coro::AIO and Coro::BDB no longer force event model detection, 735 - Coro::AIO and Coro::BDB no longer force event model detection,
406 use AnyEvent::AIO and AnyEvent::BDB. 736 use AnyEvent::AIO and AnyEvent::BDB.
530 860
5314.11 Thu Oct 11 02:40:24 CEST 2007 8614.11 Thu Oct 11 02:40:24 CEST 2007
532 - port to threaded perls. 862 - port to threaded perls.
533 863
5344.1 Thu Oct 11 02:38:16 CEST 2007 8644.1 Thu Oct 11 02:38:16 CEST 2007
535 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now 865 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now
536 be local to each coro (see Coro::State). 866 be local to each coro (see Coro::State).
537 - incompatible change: for very deep reasons, cede and cede_notself 867 - incompatible change: for very deep reasons, cede and cede_notself
538 cannot return anything, so nothing will be returned. 868 cannot return anything, so nothing will be returned.
539 - possibly bring back 5.10 compatibility (untested). 869 - possibly bring back 5.10 compatibility (untested).
540 - work around stupid (and wrong) warning on 5.10 :(. 870 - work around stupid (and wrong) warning on 5.10 :(.
612 but stateful semantics. 942 but stateful semantics.
613 - fixed a lot of typos in Coro.pm (patch submitted by David 943 - fixed a lot of typos in Coro.pm (patch submitted by David
614 Steinbrunner, which applied flawlessly). 944 Steinbrunner, which applied flawlessly).
615 945
6163.6 Sat Apr 14 17:13:31 CEST 2007 9463.6 Sat Apr 14 17:13:31 CEST 2007
617 - added some bugfixes to get eg/myhttpd working again. 947 - added some bugfixes to get eg/myhttpd working again.
618 - added Coro::Storable for often-cede'ing freeze/thaw. 948 - added Coro::Storable for often-cede'ing freeze/thaw.
619 - try to do a clean exit when a coroutine calls exit 949 - try to do a clean exit when a coroutine calls exit
620 (EXPERIMENTAL). 950 (EXPERIMENTAL).
621 - got rid of indirect call through _coro_init. 951 - got rid of indirect call through _coro_init.
622 - updated the partly antique examples in eg/ to 952 - updated the partly antique examples in eg/ to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines