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

Comparing Coro/Changes (file contents):
Revision 1.304 by root, Mon Dec 17 06:47:32 2007 UTC vs.
Revision 1.391 by root, Fri Nov 7 16:39:35 2008 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2 2
3TODO: should explore PerlIO::via::CoroCede and PerlIO::via::CoroAIO. 3TODO: should explore PerlIO::coroaio (perl leaks like hell).
4TODO: maybe implement a default message channel, very much like Erlang 4TODO: maybe implement a default message channel, very much like Erlang's
5 (which is cool in a lot of important aspects (failures!), 5 actor model (which is cool in a lot of important aspects (failures!),
6 but very lacking in others (higher level ipc)). 6 but very lacking in others (higher level ipc)).
7
8 - libcoro did not preserve rbp with CORO_ASM.
9
104.804 Wed Nov 5 16:36:00 CET 2008
11 - Coro::Debug::new_unix_server would not create a non-blocking listening
12 socket, sometimes causing freezes.
13 - fix misaligned stack points for setjmp and assembly methods, which
14 can cause crashes on x86/x86_64 with a sufficiently aggressive compiler.
15 - new function: Coro::Debug::new_tcp_server.
16 - move ->throw into the Coro class because it only works on coro objects.
17
184.803 Mon Nov 3 17:16:12 CET 2008
19 - use a global asm statement to become independent of gcc otpimisations
20 for CORO_ASM (thanks to pippijn for the idea).
21 - try to workaround yet another broken bsd, this time dragonfly.
22
234.802 Thu Oct 30 10:56:12 CET 2008
24 - support -fno-omit-frame-pointer on x86 with the assembly method.
25 - tune 01_unblock.t tests a bit.
26
274.801 Wed Oct 22 18:33:37 CEST 2008
28 - improve readline speed for very long "lines".
29 - backport to 5.8.8.
30
314.8 Thu Oct 2 13:34:40 CEST 2008
32 - new function Coro::AIO::aio_wait.
33 - Coro.:AIO and Coro::BDB now "use Coro::AnyEvent".
34 - greatly speed up and reduce memory usage of Coro::AIO requests.
35 - implement some other µ-optimisations.
36
374.749 Mon Sep 29 14:40:12 CEST 2008
38 - port to slow and broken pseudo-threaded perls. (courtesy pippijn).
39
404.748 Sat Sep 27 14:03:19 CEST 2008
41 - implement, but do not document, PerlIO::cede(granularity).
42 - Coro::Storable forgot to wrap Storable::pstore.
43 - work around the multitude of leaks and memory corruption
44 bugs in PerlIO::via by using our own C-level perliol. As a side
45 effect, Coro::Storable is now much, much, much faster.
46
474.747 Tue Sep 23 01:59:41 CEST 2008
48 - fix a per-cv memleak (one empty array was leaked per
49 code reference).
50 - avoid a crash in coro->call|rss when the coroutine was already
51 destroyed (most noticably when using Coro::Debug::ps :)
52 - also protect *Storable::FILE.
53 - push up default storable granularity to 20ms.
54
554.746 Sun Sep 21 03:22:20 CEST 2008
56 - be more insistent on locking Storable against reentrancy
57 in Coro::Storable.
58 - move swap_def?v and throw to Coro::State, as documented.
59
604.745 Thu Jul 24 00:14:38 CEST 2008
61 - remove debugging code related to MgPV_nolen_const, also try to
62 make it compile with perl 5.8.6 (yes, apple apparently loves
63 outdated software). Reported by John S.
64
654.744 Tue Jul 8 22:06:35 CEST 2008
66 - correctly provide default DIE/WARN handlers as documented.
67 - also overwrite PL_vtbl_sigelem.svt_clear, even though current
68 implementations inside perl work fine for us.
69
704.743 Mon Jun 16 00:21:57 CEST 2008
71 - when using Coro::EV without running EV::loop it could
72 result in busy-waiting for events, this has been fixed.
73 - reduce codesize and improve performance by using EV_DEFAULT_UC.
74
754.742 Sat May 31 14:10:21 CEST 2008
76 - implement a workaround for (some) perl <5.8.8 versions.
77 - require EV 3.3+.
78
794.741 Fri May 30 23:33:09 CEST 2008
80 - tell netbsd how utterly broken their imitation of an OS is
81 and refuse to build by default if pthreads are in use.
82 - switch to "s" method on all bsd's by default, as their ucontext
83 stuff seems just too broken.
84 - fix a bug in Coro::Select.
85
864.74 Thu May 29 20:05:31 CEST 2008
87 - do not test Coro::LWP for lack of dependencies.
88 - do not test Coro::Select for lack of working perls.
89
904.73 Thu May 29 2008
91 - fix a bug in Coro::EV which would cause it to block despite
92 there being runnable coroutines.
93 - sprinkle "no warnings" freely over everything, also suppress
94 warnings for some other modules.
95 - fix typo in WSAEWOULDBLOCK.
96
974.72 Sun May 25 05:14:36 CEST 2008
98 - tweak META.yaml a bit, unfortunately, there is no documented way
99 to have optional dependencies with CPAN. doh :(
100 - avoid running some tests on windows because they would fail due to
101 perl bug (broken fork, broken pipes...).
102 - work around perl on windows bugs where perl returns undocumented
103 error codes for sysread, syswrite etc. by taking advantage
104 of AnyEvent's workaround for that problem.
105 - use AnyEvent::Util::fh_nonblocking in Coro::Handle to work around
106 a common perl implementation bug on windows.
107 - use unix domain sockets in testsuite to work around
108 common perl implementation bugs on widows (they are emulated by
109 tcp sockets on windows. ugh.)
110
1114.71 Sat May 24 20:01:27 CEST 2008
112 - fix a bug in Coro::AnyEvent ("Usage: Coro::AnyEvent::_schedule()").
113 - take advantage of async name resolution of AnyEvent::Util.
114 - work around brutal inet_aton override in Coro::LWP.
115 - take advantage of the readyhook in Coro::EV, for smoother
116 scheduling.
117
1184.7 Sun May 11 00:32:19 CEST 2008
119 - completely reworked the Coro manpage.
120 - added Coro::AnyEvent, generic event loop integration.
121 - implement cancel, ready and kill commands in Coro::Debug.
122 - document find_coro in Coro::Debug.
123 - incompatible change: rename has_stack to has_cctx.
124 - Coro::AIO and Coro::BDB no longer force event model detection,
125 use AnyEvent::AIO and AnyEvent::BDB.
126
1274.6 Sat Apr 26 10:05:14 CEST 2008
128 - INCOMPATIBLE CHANGE: sub/code attributes are no longer supported
129 by the Coro module. It was a mistake to have it in the first place.
130 - (experimental) support for activestate perl 5.10 (method "w").
131 - (experimental) support for strawberry perl (method "a").
132 - coro_sigelem_set did not return a value although it had to,
133 actual impact unknown.
134
1354.51 Mon Apr 14 13:28:27 CEST 2008
136 - make it compile again on 5.8.
137
1384.50 Thu Apr 10 09:43:17 CEST 2008
139 - I did it twice! (see 4.49).
140
1414.49 Sun Apr 6 21:23:31 CEST 2008
142 - grr, instead of compiling the recent changes on 5.10 only they
143 were compiled on 5.8 only.
144
1454.48 Sun Apr 6 20:36:46 CEST 2008
146 - allow coroutine switches during eval's under 5.10.x, as it seems
147 the parser is a per-interpreter option now, so this is safe
148 (this might fix the odd crashing bug).
149 - drop support for 5.9.x versions: they are dead, jim.
150
1514.47 Sun Apr 6 00:37:52 CEST 2008
152 - force cctx allocation on API calls: we know we need to force one
153 and gcc actually manages to confuse our heuristic nowadays,
154 leading to crashes and worse.
155 - document force_cctx.
156
1574.46 Fri Apr 4 22:05:43 CEST 2008
158 - upgrade libcoro, resulting in pthread-backend (which was only created
159 to fulfill the rules of the programming languages shootout).
160
1614.45 Thu Mar 13 11:55:36 CET 2008
162 - fix a file leaking bug in eg/mhyttpd that would allow
163 downloading of any file (reported by oesi).
164 - fix deadlock bug in Coro::Channel (reported by Richard Hundt)
165 (also add testcase).
166 - support Broadcast option in Coro::Socket (patch by Richard Hundt,
167 apparently having loads of fun with that).
168 - implement $state->swap_defsv, ->swap_defav and document ->throw.
169
1704.4 Wed Feb 13 16:44:29 CET 2008
171 - only assume .cfi pseudo isns exist on GNU/Linux.
172 - add get_timed method to Coro::Channels.
173 - fixed Coro::Debug manpage.
174 - perl 5.11 compatbility improvement based on patch by
175 Andreas König.
176
1774.37 Sun Jan 20 11:25:23 CET 2008
178 - soften the check for an active parser for perl 5.10 (avoiding
179 "Coro::State::transfer called while parsing" in many cases).
180
1814.36 Sun Jan 13 10:53:56 CET 2008
182 - reset diehook when terminating from an async_pool as to not
183 trigger any __DIE__ handlers.
184
1854.35 Sun Jan 13 04:14:13 CET 2008
186 - "bt" debug command now displays any exceptions
187 from longmess and also skips the innermost
188 stackframes, giving more useufl output.
189 - allow backtraces in coroutines blocked in Coro::EV,
190 at a <1% speed hit.
191 - handle localising of $SIG{__WARN__} and __DIE__
192 properly (with a proper amount of dirty hacking).
193
1944.34 Sat Dec 22 17:49:53 CET 2007
195 - upgrade to EV version 2.0 API.
196
1974.33 Mon Dec 17 08:36:12 CET 2007
198 - make Coro::AIO etc. loadable in the absence of EV.
7 199
84.32 Mon Dec 17 07:46:02 CET 2007 2004.32 Mon Dec 17 07:46:02 CET 2007
9 - majorly improved Coro::Handle's performance with Coro::EV. 201 - majorly improved Coro::Handle's performance with Coro::EV.
10 - implemented the until now mythical Coro::BDB module. 202 - implemented the until now mythical Coro::BDB module.
11 - specialcase EV in Coro::AIO and Coro::BDB for extra speed. 203 - specialcase EV in Coro::AIO and Coro::BDB for extra speed.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines