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

Comparing Coro/Changes (file contents):
Revision 1.9 by root, Sun Jul 15 22:19:49 2001 UTC vs.
Revision 1.60 by root, Tue Nov 6 23:33:22 2001 UTC

1Revision history for Perl extension Coro. 1Revision history for Perl extension Coro.
2 2
30.06 30.53
4 - some tests for Event.
5
60.52 Tue Nov 6 21:36:18 CET 2001
7 - ported to cygwin (trivial).
8 patch by Gerrit P. Haase <gp@familiehaase.de>.
9 - small setjmp code fix by Sullivan.DanielJ@epamail.epa.gov.
10
110.51 Thu Nov 1 20:39:01 CET 2001
12 - terminate/cancel now work properly (otherwise termination
13 could cause a "next coroutine is not and contains not..."
14 error.
15 - added Coro::Socket::shutdown.
16 - Coro::Event::loop no is the same as Event::loop.
17 - implemented terminate with args + join.
18
190.5 Fri Sep 28 16:15:35 CEST 2001
20 - fixed "print" on a Coro::Handle. The print method worked.
21 - small tweaks (seem to reduce memory consumption a lot)
22 in various modules.
23 - splendid use of "no warnings" scattered throughout.
24 - added Coro::Handle::rbuf, fixed Coro::Handle::fh.
25
260.49 Sun Sep 16 02:42:45 CEST 2001
27 - changed some method calls to function calls for speed
28 inside Coro::Handle.
29 - make Coro::Handle use an array instead of a hash for
30 speed reasons.
31 - IRIX mystery solved: it's SGI's NT, after all: "standard, huh?".
32 sjlj and ucontext should now work.
33 - IRIX-specific port for libcoro.
34 - swapped order of accept results to match IO::Socket.
35 - changed getsock/peername to sock/peername to match IO::Socket.
36 - fixed a bug that caused segfault when returning to main task
37 under some circumstances.
38 - other bugfixes.
39
400.45 Sun Sep 2 02:54:01 CEST 2001
41 - new method Coro::Handle::timeout.
42 - corrected speling of set...name to get...name in Coro::Socket.
43 - Coro::Socket::accept now returns a Coro::Socket, not a Coro::Handle.
44 - Coro::Handle now supports fileno and FILENO.
45 - added eg/myhttpd, a web server.
46 - Coro::Socket now accepts numeric ports as well as "port(number)"
47 syntax.
48 - moved some scheduling primitives into xs code. more to come.
49 - new simple priority system.
50 - implemented Coro::Event using XS, almost four times faster!
51 - small memory corruption problem fixed (boy that was difficult).
52
530.13 Wed Aug 8 16:53:07 CEST 2001
54 - new method Coro::Handle::readline.
55 - added eg/lwp and Coro::Handle::autoflush, to make LWP work.
56 (see eg/lwp on how to make LWP non-blocking).
57 - renamed Coro::Socket::new_inet to new.
58 - added Coro::Util, some utility functions.
59 - die/eval now works better (still get annoying (but true ;)
60 "Callback called exit" messages).
61 - Coro::Handle now supports timeout, and Coro::Socket Timeout.
62 - much better Coro::Socket support.
63
640.12 Fri Jul 27 04:19:01 CEST 2001
65 - do not use mmap if neither MAP_ANON nor MAP_ANONYMOUS is defined.
66 - very experimental stack sharing algorithm. not 100% safe but
67 should work well in practise ;)
68 - added Coro::RWLock.
69 - Coro::Specific now works.
70
710.11 Tue Jul 24 22:49:21 CEST 2001
72 - added specialized hack for newer and older linux versions (fast).
73 - renamed Coro::Event::IO to Coro::Handle.
74 - new module Coro::Socket.
75
760.1 Tue Jul 24 01:47:53 CEST 2001
77 - release candidate 3. A rather new internal structure :(
78 - the great renaming: Damian Conway gave me a suitable replacement
79 for yield.
80 - added Coro/libcoro, a portable coroutine implementation for C
81 (not even perl-dependent!!!), which can be used by Coro::State.
82 - renamed SAVE_DEFSV (on xs-level only) to avoid symbol clash in
83 perl-5.6.
84 - new function Coro::Event::idle.
85 - the idle process is now overriden
86 by default in Coro::Event.
87 - Coro::Channel now enforces the size.
88 - canceling events now works in all cases.
89 - Coro state now include $_ and $@.
90 - yet another bug workaround that I do not really understand :(
91 - new module Coro::Event::IO (very undocumented) to do
92 non-blocking i/o.
93 - performance tuning.
94
950.08 Thu Jul 19 06:13:25 CEST 2001
96 - release candidate 2 (new functionality).
97 - add Coro::State::flush function.
98 - transfer now supports a flags value (mostly for speed ATM).
99 - might compile and work in the presence of threads now.
100 - continuations have a saner syntax.
101 - no more memleaks.
102
1030.07 Tue Jul 17 17:40:18 CEST 2001
104 - release candidate 1 ;)
105 - slightly nicer code.
106 - fixed a scheduling bug in Coro::Event.
107
1080.06 Tue Jul 17 04:23:24 CEST 2001
4 - ok, i found the showstopper - the same sub must not be 109 - ok, I found the showstopper - the same sub must not be
5 re-entered in two different coroutines, otherwise => crash. I 110 re-entered in two different coroutines, otherwise => crash. I
6 see no easy solution to this problem, except by walking the call 111 see no easy solution to this problem, except by walking the call
7 chaing and saving/restoring the cv's, which is what I do now. 112 chaing and saving/restoring the cv's, which is what I do now.
113 - memory leaks still latent, especially at thread termination.
8 - Coro::Event now works. 114 - Coro::Event now works (haha).
9 115
100.05 Sun Jul 15 17:32:20 CEST 2001 1160.05 Sun Jul 15 17:32:20 CEST 2001
11 - fixed a few issues in Coro::Event. 117 - fixed a few issues in Coro::Event.
12 - I forgot to include Coro::Event in 0.04 :(:(:( 118 - I forgot to include Coro::Event in 0.04 :(:(:(
13 119

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines