--- cvsroot/Coro/Changes 2014/02/22 14:12:45 1.624 +++ cvsroot/Coro/Changes 2014/08/13 03:09:53 1.634 @@ -5,11 +5,38 @@ TODO: __GCC_HAVE_DWARF2_CFI_ASM TODO: swap_sv, maybe add scope_swap_sv, andallow to unswap by repeat? TODO: swap_sv not undone in pool +TODO: croak when async_pool triesd to runc anceled thread? -TODO: warnhook reports from wrong line number now, when arg is Math::GMP number. - - FATAL: $Coro::IDLE blocked itself will now use Carp::confess + - restore portability to perl 5.8.x. + - allow zero as agrument to Coro::Channel to mean the same thing + as no argument. this works with older versions as well, + but wasn't legal until now. + +6.39 Mon Jun 2 00:00:08 CEST 2014 + - work around more incompatible changes in 5.20. + +6.38 Sun Jun 1 21:54:23 CEST 2014 + - check that perl slots actually have enough space to hold + interpreter variables. + - untested port to perl 5.19 (64 bit tmps indices) (reported + by Andreas König). + - croak when cancel is called without a thread context. + +6.37 Tue Mar 4 13:27:33 CET 2014 + - *sigh*, removed leftover debugging code from debugging a + perl bug, of all things. + +6.36 Tue Mar 4 07:11:59 CET 2014 + - semaphores would not clear the destroy hook when interrupted + by ->throw, causing segfaults or worse. + - ->throw on a thread waiting for a semaphore did not acquire + the semaphore, but also didn't wake up other waiters, + possibly causing a deadlock. + - "FATAL: $Coro::IDLE blocked itself" will now use Carp::confess to report a full stacktrace, which should help find out where the actual call is. + - "atomically" destroy data in slf_destroy, because it is + the right thing to do, just in case. - disable ecb.h libm dependency, to compile on ancient systems or under adverse conditions. @@ -121,7 +148,7 @@ 6.01 Sun Jul 3 12:31:14 CEST 2011 - workarounds are good, but the test for whether pthreads are used - was not good. thisone should be better. + was not good. this one should be better. - check differently whether gcc generates cfi instructions itself. 6.0 Wed Jun 29 19:43:35 CEST 2011 @@ -129,7 +156,7 @@ destroyed and cleaned up automatically (e.g. async { schedule }). - implement a JIT compiler for part of the thread switch code, which gives a 50% speed improvement on threaded perls, and - about 4% on non-thraeded perls (so threaded perls now finally + about 4% on non-threaded perls (so threaded perls now finally reach about half the speed of non-threaded perls). - slightly modernise Coro::Intro, add section about rouse functions. - avoid DEFSV and ERRSV, giving another 10% improvement