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

Comparing Coro/Changes (file contents):
Revision 1.26 by root, Tue Jul 24 18:46:06 2001 UTC vs.
Revision 1.84 by pcg, Sat Nov 15 03:53:10 2003 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2
30.9
4 - fix a few very hard to track down but (of course) stupid
5 memory leaks.
6 - stringify version number to avoid locale problems :(.
7
80.8 Wed Nov 5 19:38:40 CET 2003
9 - port to perl5.005_03, but only 5.8.x+ is supported!
10 - honor LocalAddr even without LocalPort in Coro::Socket.
11
120.7 Tue May 27 03:12:38 CEST 2003
13 - the version jump indicates some level of testing, not gobs
14 of new features.
15 - uh... I found the prompt function in ExtUtils::MakeMaker.
16 Highly correct stuff, that is...
17 - fixed(?) a bug with die's in coroutines causing "panic: top_env".
18 the fix is not well understood by the author, so beware :(.
19
200.652 Thu May 8 02:54:46 CEST 2003
21 - Applied patch by Slaven Rezic to set default to "s" on FreeBSD,
22 cause version 4 doesn't have ucontext.
23 - Benjamin Reed reported that setjmp works fine on darwin,
24 so preselect it.
25
260.651 Sat Mar 29 15:00:23 CET 2003
27 - fix a bug in Coro::Handle where some bytes could get lost
28 on reading, reported by jason@nichego.net.
29
300.65 Sun Mar 23 00:08:26 CET 2003
31 - added a README.linux-glibc.
32 - new module Coro::Select.
33 - also save/restore PL_comppad, fixes segfaults with 5.8.1.
34 (I never claimed that I know what I am doing ;).
35 - set default to setjmp/longjmp on non-x86-linux.
36
370.6 Thu Nov 21 11:09:06 CET 2002
38 - made lazy context switching the default.
39 - fixed the bug where SemaphoreSet::guard
40 was the same as timed_guard and timed_guard was missing.
41 - fix a memleak in Coro::Timer.
42 - reclassified context sharing as not experimental.
43
440.534 Sun Apr 14 03:05:12 CEST 2002
45 - fixed backspace => tab in header parsing (myhttpd).
46 - added eg/readline, for elmex.
47 - Coro::Event now calls ->start on first call instead of
48 ->again, which created wrong timeouts for the first ->next.
49 - fixed a bug where Coro::Socket returned a closed socket instead
50 of nothing on ECONNREFUSED and similar error conditions.
51
520.533 Mon Feb 18 18:49:40 CET 2002
53 - adapt to finally working Event-0.85.
54 - fixed buggy event initialization (trapped under windows, but how
55 could it possibly have worked anywhere?)
56
570.532 Wed Jan 16 02:45:32 CET 2002
58 - removed the reference to pp_entersub, might work on
59 (some) win32 perls now (testsuite works under cygwin,
60 without Event, which freezes).
61
620.531 Mon Dec 10 22:18:44 CET 2001
63 - Fixed a bug in SemaphoreSet::timed_down.
64
650.53 Tue Nov 27 21:11:13 CET 2001
66 - some tests for Event.
67 - slightly different internal architecture to get refcnt into the object
68 and not the reference. might fix a few bugs, certainly did introduce
69 new ones.
70 - Coro::Timer (independent of Event).
71 - new timed_wait functions for Coro::Signal, Semaphore, SemaphoreSet.
72
730.52 Tue Nov 6 21:36:18 CET 2001
74 - ported to cygwin (trivial).
75 patch by Gerrit P. Haase <gp@familiehaase.de>.
76 - small setjmp code fix by Sullivan.DanielJ@epamail.epa.gov.
77
780.51 Thu Nov 1 20:39:01 CET 2001
79 - terminate/cancel now work properly (otherwise termination
80 could cause a "next coroutine is not and contains not..."
81 error.
82 - added Coro::Socket::shutdown.
83 - Coro::Event::loop no is the same as Event::loop.
84 - implemented terminate with args + join.
85
860.5 Fri Sep 28 16:15:35 CEST 2001
87 - fixed "print" on a Coro::Handle. The print method worked.
88 - small tweaks (seem to reduce memory consumption a lot)
89 in various modules.
90 - splendid use of "no warnings" scattered throughout.
91 - added Coro::Handle::rbuf, fixed Coro::Handle::fh.
92
930.49 Sun Sep 16 02:42:45 CEST 2001
94 - changed some method calls to function calls for speed
95 inside Coro::Handle.
96 - make Coro::Handle use an array instead of a hash for
97 speed reasons.
98 - IRIX mystery solved: it's SGI's NT, after all: "standard, huh?".
99 sjlj and ucontext should now work.
100 - IRIX-specific port for libcoro.
101 - swapped order of accept results to match IO::Socket.
102 - changed getsock/peername to sock/peername to match IO::Socket.
103 - fixed a bug that caused segfault when returning to main task
104 under some circumstances.
105 - other bugfixes.
106
1070.45 Sun Sep 2 02:54:01 CEST 2001
108 - new method Coro::Handle::timeout.
109 - corrected speling of set...name to get...name in Coro::Socket.
110 - Coro::Socket::accept now returns a Coro::Socket, not a Coro::Handle.
111 - Coro::Handle now supports fileno and FILENO.
112 - added eg/myhttpd, a web server.
113 - Coro::Socket now accepts numeric ports as well as "port(number)"
114 syntax.
115 - moved some scheduling primitives into xs code. more to come.
116 - new simple priority system.
117 - implemented Coro::Event using XS, almost four times faster!
118 - small memory corruption problem fixed (boy that was difficult).
119
1200.13 Wed Aug 8 16:53:07 CEST 2001
121 - new method Coro::Handle::readline.
122 - added eg/lwp and Coro::Handle::autoflush, to make LWP work.
123 (see eg/lwp on how to make LWP non-blocking).
124 - renamed Coro::Socket::new_inet to new.
125 - added Coro::Util, some utility functions.
126 - die/eval now works better (still get annoying (but true ;)
127 "Callback called exit" messages).
128 - Coro::Handle now supports timeout, and Coro::Socket Timeout.
129 - much better Coro::Socket support.
130
1310.12 Fri Jul 27 04:19:01 CEST 2001
132 - do not use mmap if neither MAP_ANON nor MAP_ANONYMOUS is defined.
133 - very experimental stack sharing algorithm. not 100% safe but
134 should work well in practise ;)
135 - added Coro::RWLock.
136 - Coro::Specific now works.
137
1380.11 Tue Jul 24 22:49:21 CEST 2001
139 - added specialized hack for newer and older linux versions (fast).
140 - renamed Coro::Event::IO to Coro::Handle.
141 - new module Coro::Socket.
2 142
30.1 Tue Jul 24 01:47:53 CEST 2001 1430.1 Tue Jul 24 01:47:53 CEST 2001
4 - release candidate 3. A rather new internal structure :( 144 - release candidate 3. A rather new internal structure :(
5 - the great renaming: Damian Conway gave me a suitable replacement 145 - the great renaming: Damian Conway gave me a suitable replacement
6 for yield. 146 for yield.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines