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

Comparing Coro/Changes (file contents):
Revision 1.609 by root, Thu Dec 13 00:21:11 2012 UTC vs.
Revision 1.627 by root, Tue Mar 4 12:32:02 2014 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: __GCC_HAVE_DWARF2_CFI_ASM 5TODO: __GCC_HAVE_DWARF2_CFI_ASM
6TODO: swap_sv, maybe add scope_swap_sv, andallow to unswap by repeat?
7TODO: swap_sv not undone in pool
6 8
96.37 Tue Mar 4 13:27:33 CET 2014
10 - *sigh*, removed leftover dbeugging code from debugging a
11 perl bug, of all things.
12
136.36 Tue Mar 4 07:11:59 CET 2014
14 - semaphores would not clear the destroy hook when interrupted
15 by ->throw, causing segfaults or worse.
16 - ->throw on a thread waiting for a semaphore did not acquire
17 the semaphore, but also didn't wake up other waiters,
18 possibly causing a deadlock.
19 - "FATAL: $Coro::IDLE blocked itself" will now use Carp::confess
20 to report a full stacktrace, which should help find out
21 where the actual call is.
22 - "atomically" destroy data in slf_destroy, because it is
23 the right thing to do, just in case.
24 - disable ecb.h libm dependency, to compile on ancient systems
25 or under adverse conditions.
26
276.33 Mon Nov 18 11:26:27 CET 2013
28 - do not crash when freeing padlists with holes (in 5.18).
29 - tentative SVt_BIND 5.19 port/fix.
30
316.32 Tue Nov 5 15:35:35 CET 2013
32 - use a new algorithm to derive padlists for perl 5.18. The old
33 one could lead to 0-pointer accesses inside perl (reported
34 by Darin McBride).
35
366.31 Thu May 9 07:39:48 CEST 2013
37 - Coro::AIO requests would crash if the thread was ready'd
38 while the request was ongoing.
39
406.29 Wed May 8 02:55:18 CEST 2013
41 - when an on_destroy handler destructs the coro currently being
42 destructed a perl scalar could be accessed after being freed,
43 likely causing a crash.
44
456.28 Wed Mar 6 06:58:02 CET 2013
46 - clean remnants of existing __DIE__ and __WARN__ handlers so
47 they lose their magic and will not cause segfaults later
48 (testcase by Andrey Sagulin).
7 - improved Coro::State documentation a bit. 49 - improved Coro::State documentation a bit.
8 - Coro::Debug::command now flushes the output. 50 - Coro::Debug::command now flushes the output.
51 - add hack detection code for x32 abi, because the braindead slugs
52 who designed that made it look exactly like x86_64 without
53 providing proper compile time symbols to test for it. as a result,
54 this detection cannot work reliably.
55 - valgrind stack registering was broken.
56 - do not rely on Time::HiRes anymore in Coro::Debug.
9 57
106.23 Fri Dec 7 23:36:37 CET 2012 586.23 Fri Dec 7 23:36:37 CET 2012
11 - use experimental fiber implementation on native windows 59 - use experimental fiber implementation on native windows
12 perls. 60 perls.
13 - use sizeof (void *) as multiplication factor for stack sizes, 61 - use sizeof (void *) as multiplication factor for stack sizes,
454 - ->throw is now supported on Coro::State objects. 502 - ->throw is now supported on Coro::State objects.
455 - clean up cctx creation code a bit. 503 - clean up cctx creation code a bit.
456 - entersub is actually a UNOP, not a LOGOP (not a bugfix). 504 - entersub is actually a UNOP, not a LOGOP (not a bugfix).
457 505
4584.9 Sat Nov 8 17:45:27 CET 2008 5064.9 Sat Nov 8 17:45:27 CET 2008
459 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there). 507 - (libcoro) did not preserve rbp with CORO_ASM (we are getting there).
460 - (libcoro) no longer leak threads in the experimental pthread backend, 508 - (libcoro) no longer leak threads in the experimental pthread backend,
461 also speed it up considerably. 509 also speed it up considerably.
462 - (libcoro) do not rely on makecontext passing void *'s unscathed. 510 - (libcoro) do not rely on makecontext passing void *'s unscathed.
463 - fix compiletime dependencies on libcoro in the Makefile. 511 - fix compiletime dependencies on libcoro in the Makefile.
464 - cctx_count wasn't always updated properly. 512 - cctx_count wasn't always updated properly.
526 - remove debugging code related to MgPV_nolen_const, also try to 574 - remove debugging code related to MgPV_nolen_const, also try to
527 make it compile with perl 5.8.6 (yes, apple apparently loves 575 make it compile with perl 5.8.6 (yes, apple apparently loves
528 outdated software). Reported by John S. 576 outdated software). Reported by John S.
529 577
5304.744 Tue Jul 8 22:06:35 CEST 2008 5784.744 Tue Jul 8 22:06:35 CEST 2008
531 - correctly provide default DIE/WARN handlers as documented. 579 - correctly provide default DIE/WARN handlers as documented.
532 - also overwrite PL_vtbl_sigelem.svt_clear, even though current 580 - also overwrite PL_vtbl_sigelem.svt_clear, even though current
533 implementations inside perl work fine for us. 581 implementations inside perl work fine for us.
534 582
5354.743 Mon Jun 16 00:21:57 CEST 2008 5834.743 Mon Jun 16 00:21:57 CEST 2008
536 - when using Coro::EV without running EV::loop it could 584 - when using Coro::EV without running EV::loop it could
558 - sprinkle "no warnings" freely over everything, also suppress 606 - sprinkle "no warnings" freely over everything, also suppress
559 warnings for some other modules. 607 warnings for some other modules.
560 - fix typo in WSAEWOULDBLOCK. 608 - fix typo in WSAEWOULDBLOCK.
561 609
5624.72 Sun May 25 05:14:36 CEST 2008 6104.72 Sun May 25 05:14:36 CEST 2008
563 - tweak META.yaml a bit, unfortunately, there is no documented way 611 - tweak META.yaml a bit, unfortunately, there is no documented way
564 to have optional dependencies with CPAN. doh :( 612 to have optional dependencies with CPAN. doh :(
565 - avoid running some tests on windows because they would fail due to 613 - avoid running some tests on windows because they would fail due to
566 perl bug (broken fork, broken pipes...). 614 perl bug (broken fork, broken pipes...).
567 - work around perl on windows bugs where perl returns undocumented 615 - work around perl on windows bugs where perl returns undocumented
568 error codes for sysread, syswrite etc. by taking advantage 616 error codes for sysread, syswrite etc. by taking advantage
572 - use unix domain sockets in testsuite to work around 620 - use unix domain sockets in testsuite to work around
573 common perl implementation bugs on widows (they are emulated by 621 common perl implementation bugs on widows (they are emulated by
574 tcp sockets on windows. ugh.) 622 tcp sockets on windows. ugh.)
575 623
5764.71 Sat May 24 20:01:27 CEST 2008 6244.71 Sat May 24 20:01:27 CEST 2008
577 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()"). 625 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()").
578 - take advantage of async name resolution of AnyEvent::Util. 626 - take advantage of async name resolution of AnyEvent::Util.
579 - work around brutal inet_aton override in Coro::LWP. 627 - work around brutal inet_aton override in Coro::LWP.
580 - take advantage of the readyhook in Coro::EV, for smoother 628 - take advantage of the readyhook in Coro::EV, for smoother
581 scheduling. 629 scheduling.
582 630
5834.7 Sun May 11 00:32:19 CEST 2008 6314.7 Sun May 11 00:32:19 CEST 2008
584 - completely reworked the Coro manpage. 632 - completely reworked the Coro manpage.
585 - added Coro::AnyEvent, generic event loop integration. 633 - added Coro::AnyEvent, generic event loop integration.
586 - implement cancel, ready and kill commands in Coro::Debug. 634 - implement cancel, ready and kill commands in Coro::Debug.
587 - document find_coro in Coro::Debug. 635 - document find_coro in Coro::Debug.
588 - incompatible change: rename has_stack to has_cctx. 636 - incompatible change: rename has_stack to has_cctx.
589 - Coro::AIO and Coro::BDB no longer force event model detection, 637 - Coro::AIO and Coro::BDB no longer force event model detection,
590 use AnyEvent::AIO and AnyEvent::BDB. 638 use AnyEvent::AIO and AnyEvent::BDB.
714 762
7154.11 Thu Oct 11 02:40:24 CEST 2007 7634.11 Thu Oct 11 02:40:24 CEST 2007
716 - port to threaded perls. 764 - port to threaded perls.
717 765
7184.1 Thu Oct 11 02:38:16 CEST 2007 7664.1 Thu Oct 11 02:38:16 CEST 2007
719 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now 767 - incompatible change: $SIG{__DIE__} and $SIG{__WARN__} will now
720 be local to each coro (see Coro::State). 768 be local to each coro (see Coro::State).
721 - incompatible change: for very deep reasons, cede and cede_notself 769 - incompatible change: for very deep reasons, cede and cede_notself
722 cannot return anything, so nothing will be returned. 770 cannot return anything, so nothing will be returned.
723 - possibly bring back 5.10 compatibility (untested). 771 - possibly bring back 5.10 compatibility (untested).
724 - work around stupid (and wrong) warning on 5.10 :(. 772 - work around stupid (and wrong) warning on 5.10 :(.
796 but stateful semantics. 844 but stateful semantics.
797 - fixed a lot of typos in Coro.pm (patch submitted by David 845 - fixed a lot of typos in Coro.pm (patch submitted by David
798 Steinbrunner, which applied flawlessly). 846 Steinbrunner, which applied flawlessly).
799 847
8003.6 Sat Apr 14 17:13:31 CEST 2007 8483.6 Sat Apr 14 17:13:31 CEST 2007
801 - added some bugfixes to get eg/myhttpd working again. 849 - added some bugfixes to get eg/myhttpd working again.
802 - added Coro::Storable for often-cede'ing freeze/thaw. 850 - added Coro::Storable for often-cede'ing freeze/thaw.
803 - try to do a clean exit when a coroutine calls exit 851 - try to do a clean exit when a coroutine calls exit
804 (EXPERIMENTAL). 852 (EXPERIMENTAL).
805 - got rid of indirect call through _coro_init. 853 - got rid of indirect call through _coro_init.
806 - updated the partly antique examples in eg/ to 854 - updated the partly antique examples in eg/ to

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines