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

Comparing Coro/Changes (file contents):
Revision 1.51 by root, Mon Sep 24 01:36:20 2001 UTC vs.
Revision 1.129 by root, Tue Oct 24 03:55:28 2006 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2 2
30.5 32.0 Tue Oct 24 05:47:17 CEST 2006
4 - support additional aio requests in Coro::AIO.
5
61.9 (never properly released due to a glitch)
7
81.8 Thu Feb 2 00:59:06 CET 2006
9 - applied suggested patch by SAMV to avoid problems during stupid
10 mark & sweep gc run.
11 - applied patch by Scott Walters for 5.9.3 compatibility.
12
131.7 Tue Dec 27 01:41:58 CET 2005
14 - added Coro::AIO, a thin wrapper around IO::AIO.
15 - improved Makefile.PL explanations.
16
171.6 Mon Dec 12 21:30:05 CET 2005
18 - additionally save PM_curpm might fix as-of-yet
19 unseen problems with regex matches being attributed to the
20 wrong package.
21 - add t/10_bugs.t, which currently checks against imho broken
22 perls that use 0.26MB of stack space per Perl_magic_get
23 invocation (newer linuxes) as opposed to the 0.0002MB perl
24 normally uses.
25 - make stacksize configurable for the ultimate debian experience.
26
271.51 Mon Dec 12 18:48:36 CET 2005
28 - remove debugging warn() accidentally left in Coro::Select.
29
301.5 Tue Nov 29 13:32:44 CET 2005
31 - use Coro::Event inside Coro::Select to avoid spurious deadlocks.
32 - fix Coro::Select 'select'.
33 - strict'ify some modules.
34 - libcoro errornously restored the SIGUSR2 handler to SIGUSR1.
35 - use XSLoader in selected modules.
36 - remove some 5.6 compatibility cruft.
37
381.4 Tue Sep 6 00:11:05 CEST 2005
39 - libcoro did not take into account the trampoline on amd64,
40 when 'l'inux method was used.
41
421.31 Tue Aug 30 23:31:33 CEST 2005
43 - some portability fixes/workarounds.
44
451.3 Sat Aug 20 03:08:56 CEST 2005
46 - no code changes. module seems to work fine.
47 - improve Coro::State docs, remove reference to nonexisting
48 Coro::State::flush method.
49 - no longer autodetect windows, present it as an option instead.
50
511.2 Mon May 16 02:00:55 CEST 2005
52 - included libcoro.c earlier in State.xs, might improve portability.
53 - use a faster and possibly more stable Coro::Cont implementation.
54 - accept x86_64 in addition to amd64 for optimized linux-amd64 support.
55 - fix bugs Coro::SemaphoreSet that could cause locks never to be freed.
56 - fix bugs in CoroAPI.h and document it in Coro::MakeMaker.
57
581.11 Thu Mar 3 18:00:52 CET 2005
59 - change of contact address.
60
611.1 Tue Feb 22 20:51:16 CET 2005
62 - support [l]inux method on amd64.
63 - allow some context switches while compiling/eval'ing.
64
651.0 Tue Aug 10 03:47:27 CEST 2004
66 - Event 0.89 fixes the bug again.
67 - fix the remaining(??) memleak. I didn't free the cache-AV for
68 padlists, so one AV per created anon-sub leaked.
69
700.97 Fri May 14 15:23:32 CEST 2004
71 - remove stupid gcc extension that was an experiment only anyway.
72
730.96 Thu May 13 18:09:29 CEST 2004
74 - tell people if they have yet another broken Event variant.
75 - made Coro to work _better_ with threads (it seems that, as long
76 as you use Coros in one thread only everything will work fine.
77 Looking at the perl source the problem might be missing locking
78 between Coro and some perl internal routines. That's not easily
79 fixable).
80 - (hopefully) got rid of the static xnext inside transfer.
81
820.95 Sun Feb 15 03:20:28 CET 2004
83 - removed Coro::State::flush, implemented a new and much
84 faster caching mechanism by attaching magic to the CV.
85 - a memleak with (real) closures remains.
86 - dramatically reduced size of stacks to 65536 (linux/x86), after
87 observing that even myhttpd never had more than a kilobyte
88 of stack in use (stack is still only physically allocated in
89 pagesize increments for systems suporting mmap).
90 - fix for a "cygwin-64" architecture added, proposed by Stefan Traby.
91 - fix for threaded perl.
92
930.9 Sun Nov 23 04:32:39 CET 2003
94 - fix a few very hard to track down but (of course) stupid
95 memory leaks.
96 - stringify version number to avoid locale problems :(.
97 - perl 5.9.0 does not have SvPADBUSY, reported by Scott Walters,
98 hopefully ignoring it "just works".
99
1000.8 Wed Nov 5 19:38:40 CET 2003
101 - port to perl5.005_03, but only 5.8.x+ is supported!
102 - honor LocalAddr even without LocalPort in Coro::Socket.
103
1040.7 Tue May 27 03:12:38 CEST 2003
105 - the version jump indicates some level of testing, not gobs
106 of new features.
107 - uh... I found the prompt function in ExtUtils::MakeMaker.
108 Highly correct stuff, that is...
109 - fixed(?) a bug with die's in coroutines causing "panic: top_env".
110 the fix is not well understood by the author, so beware :(.
111
1120.652 Thu May 8 02:54:46 CEST 2003
113 - Applied patch by Slaven Rezic to set default to "s" on FreeBSD,
114 cause version 4 doesn't have ucontext.
115 - Benjamin Reed reported that setjmp works fine on darwin,
116 so preselect it.
117
1180.651 Sat Mar 29 15:00:23 CET 2003
119 - fix a bug in Coro::Handle where some bytes could get lost
120 on reading, reported by jason@nichego.net.
121
1220.65 Sun Mar 23 00:08:26 CET 2003
123 - added a README.linux-glibc.
124 - new module Coro::Select.
125 - also save/restore PL_comppad, fixes segfaults with 5.8.1.
126 (I never claimed that I know what I am doing ;).
127 - set default to setjmp/longjmp on non-x86-linux.
128
1290.6 Thu Nov 21 11:09:06 CET 2002
130 - made lazy context switching the default.
131 - fixed the bug where SemaphoreSet::guard
132 was the same as timed_guard and timed_guard was missing.
133 - fix a memleak in Coro::Timer.
134 - reclassified context sharing as not experimental.
135
1360.534 Sun Apr 14 03:05:12 CEST 2002
137 - fixed backspace => tab in header parsing (myhttpd).
138 - added eg/readline, for elmex.
139 - Coro::Event now calls ->start on first call instead of
140 ->again, which created wrong timeouts for the first ->next.
141 - fixed a bug where Coro::Socket returned a closed socket instead
142 of nothing on ECONNREFUSED and similar error conditions.
143
1440.533 Mon Feb 18 18:49:40 CET 2002
145 - adapt to finally working Event-0.85.
146 - fixed buggy event initialization (trapped under windows, but how
147 could it possibly have worked anywhere?)
148
1490.532 Wed Jan 16 02:45:32 CET 2002
150 - removed the reference to pp_entersub, might work on
151 (some) win32 perls now (testsuite works under cygwin,
152 without Event, which freezes).
153
1540.531 Mon Dec 10 22:18:44 CET 2001
155 - Fixed a bug in SemaphoreSet::timed_down.
156
1570.53 Tue Nov 27 21:11:13 CET 2001
158 - some tests for Event.
159 - slightly different internal architecture to get refcnt into the object
160 and not the reference. might fix a few bugs, certainly did introduce
161 new ones.
162 - Coro::Timer (independent of Event).
163 - new timed_wait functions for Coro::Signal, Semaphore, SemaphoreSet.
164
1650.52 Tue Nov 6 21:36:18 CET 2001
166 - ported to cygwin (trivial).
167 patch by Gerrit P. Haase <gp@familiehaase.de>.
168 - small setjmp code fix by Sullivan.DanielJ@epamail.epa.gov.
169
1700.51 Thu Nov 1 20:39:01 CET 2001
171 - terminate/cancel now work properly (otherwise termination
172 could cause a "next coroutine is not and contains not..."
173 error.
174 - added Coro::Socket::shutdown.
175 - Coro::Event::loop no is the same as Event::loop.
176 - implemented terminate with args + join.
177
1780.5 Fri Sep 28 16:15:35 CEST 2001
179 - fixed "print" on a Coro::Handle. The print method worked.
4 - small tweaks (seem to reduce memory consumption a lot) 180 - small tweaks (seem to reduce memory consumption a lot)
5 in various modules. 181 in various modules.
6 - splendid use of "no warnings" scattered throughout. 182 - splendid use of "no warnings" scattered throughout.
7 - added Coro::Handle::unsysread, fixed Coro::Handle::fh. 183 - added Coro::Handle::rbuf, fixed Coro::Handle::fh.
8 184
90.49 Sun Sep 16 02:42:45 CEST 2001 1850.49 Sun Sep 16 02:42:45 CEST 2001
10 - changed some method calls to function calls for speed 186 - changed some method calls to function calls for speed
11 inside Coro::Handle. 187 inside Coro::Handle.
12 - make Coro::Handle use an array instead of a hash for 188 - make Coro::Handle use an array instead of a hash for

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines