ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Changes
Revision: 1.60
Committed: Tue Nov 6 23:33:22 2001 UTC (22 years, 6 months ago) by root
Branch: MAIN
Changes since 1.59: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for Perl extension Coro.
2
3 0.53
4 - some tests for Event.
5
6 0.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
11 0.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
19 0.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
26 0.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
40 0.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
53 0.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
64 0.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
71 0.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
76 0.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
95 0.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
103 0.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
108 0.06 Tue Jul 17 04:23:24 CEST 2001
109 - ok, I found the showstopper - the same sub must not be
110 re-entered in two different coroutines, otherwise => crash. I
111 see no easy solution to this problem, except by walking the call
112 chaing and saving/restoring the cv's, which is what I do now.
113 - memory leaks still latent, especially at thread termination.
114 - Coro::Event now works (haha).
115
116 0.05 Sun Jul 15 17:32:20 CEST 2001
117 - fixed a few issues in Coro::Event.
118 - I forgot to include Coro::Event in 0.04 :(:(:(
119
120 0.04 Sun Jul 15 05:24:59 CEST 2001
121 - @_ is now properly localized.
122 - Coro::State is now easier subclassable.
123 - Coro::Cont now coroutine-aware.
124 - Coro::Specific is a low-overhead module to create
125 coroutine-specific vars.
126 - Coro::Event provides a simple interface to Event.
127
128 0.03 Fri Jul 13 14:51:52 CEST 2001
129 - transfer() now implemented in XS (beware).
130 - new module Coro::Cont for really faked continuations.
131 - big internal architecture changes: Coro::State is now
132 really low-level and can thus be used to implement other
133 interesting things, While "Coro::" implements a process-like
134 model. Still crude and subject to change.
135 - $_ and $@ are no longer being localized.
136
137 0.02 Tue Jul 10 01:38:17 CEST 2001
138 - implemented "async" attribute.
139 - $_ and $@ are now localized.
140 - added Coro::Channel.
141 - more testcases, still no docs.
142
143 0.01 Tue Jul 3 02:18:41 CEST 2001
144 - original version; copied from Convert::Scalar.
145