ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Changes
Revision: 1.66
Committed: Fri Jan 4 02:42:09 2002 UTC (22 years, 4 months ago) by root
Branch: MAIN
Changes since 1.65: +3 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 Revision history for Perl extension Coro.
2
3 - removed the reference to pp_entersub, might work on
4 (some) win32 perls now (testsuite works under cygwin,
5 without Event, which freezes).
6
7 0.531 Mon Dec 10 22:18:44 CET 2001
8 - Fixed a bug in SemaphoreSet::timed_down.
9
10 0.53 Tue Nov 27 21:11:13 CET 2001
11 - some tests for Event.
12 - slightly different internal architecture to get refcnt into the object
13 and not the reference. might fix a few bugs, certainly did introduce
14 new ones.
15 - Coro::Timer (independent of Event).
16 - new timed_wait functions for Coro::Signal, Semaphore, SemaphoreSet.
17
18 0.52 Tue Nov 6 21:36:18 CET 2001
19 - ported to cygwin (trivial).
20 patch by Gerrit P. Haase <gp@familiehaase.de>.
21 - small setjmp code fix by Sullivan.DanielJ@epamail.epa.gov.
22
23 0.51 Thu Nov 1 20:39:01 CET 2001
24 - terminate/cancel now work properly (otherwise termination
25 could cause a "next coroutine is not and contains not..."
26 error.
27 - added Coro::Socket::shutdown.
28 - Coro::Event::loop no is the same as Event::loop.
29 - implemented terminate with args + join.
30
31 0.5 Fri Sep 28 16:15:35 CEST 2001
32 - fixed "print" on a Coro::Handle. The print method worked.
33 - small tweaks (seem to reduce memory consumption a lot)
34 in various modules.
35 - splendid use of "no warnings" scattered throughout.
36 - added Coro::Handle::rbuf, fixed Coro::Handle::fh.
37
38 0.49 Sun Sep 16 02:42:45 CEST 2001
39 - changed some method calls to function calls for speed
40 inside Coro::Handle.
41 - make Coro::Handle use an array instead of a hash for
42 speed reasons.
43 - IRIX mystery solved: it's SGI's NT, after all: "standard, huh?".
44 sjlj and ucontext should now work.
45 - IRIX-specific port for libcoro.
46 - swapped order of accept results to match IO::Socket.
47 - changed getsock/peername to sock/peername to match IO::Socket.
48 - fixed a bug that caused segfault when returning to main task
49 under some circumstances.
50 - other bugfixes.
51
52 0.45 Sun Sep 2 02:54:01 CEST 2001
53 - new method Coro::Handle::timeout.
54 - corrected speling of set...name to get...name in Coro::Socket.
55 - Coro::Socket::accept now returns a Coro::Socket, not a Coro::Handle.
56 - Coro::Handle now supports fileno and FILENO.
57 - added eg/myhttpd, a web server.
58 - Coro::Socket now accepts numeric ports as well as "port(number)"
59 syntax.
60 - moved some scheduling primitives into xs code. more to come.
61 - new simple priority system.
62 - implemented Coro::Event using XS, almost four times faster!
63 - small memory corruption problem fixed (boy that was difficult).
64
65 0.13 Wed Aug 8 16:53:07 CEST 2001
66 - new method Coro::Handle::readline.
67 - added eg/lwp and Coro::Handle::autoflush, to make LWP work.
68 (see eg/lwp on how to make LWP non-blocking).
69 - renamed Coro::Socket::new_inet to new.
70 - added Coro::Util, some utility functions.
71 - die/eval now works better (still get annoying (but true ;)
72 "Callback called exit" messages).
73 - Coro::Handle now supports timeout, and Coro::Socket Timeout.
74 - much better Coro::Socket support.
75
76 0.12 Fri Jul 27 04:19:01 CEST 2001
77 - do not use mmap if neither MAP_ANON nor MAP_ANONYMOUS is defined.
78 - very experimental stack sharing algorithm. not 100% safe but
79 should work well in practise ;)
80 - added Coro::RWLock.
81 - Coro::Specific now works.
82
83 0.11 Tue Jul 24 22:49:21 CEST 2001
84 - added specialized hack for newer and older linux versions (fast).
85 - renamed Coro::Event::IO to Coro::Handle.
86 - new module Coro::Socket.
87
88 0.1 Tue Jul 24 01:47:53 CEST 2001
89 - release candidate 3. A rather new internal structure :(
90 - the great renaming: Damian Conway gave me a suitable replacement
91 for yield.
92 - added Coro/libcoro, a portable coroutine implementation for C
93 (not even perl-dependent!!!), which can be used by Coro::State.
94 - renamed SAVE_DEFSV (on xs-level only) to avoid symbol clash in
95 perl-5.6.
96 - new function Coro::Event::idle.
97 - the idle process is now overriden
98 by default in Coro::Event.
99 - Coro::Channel now enforces the size.
100 - canceling events now works in all cases.
101 - Coro state now include $_ and $@.
102 - yet another bug workaround that I do not really understand :(
103 - new module Coro::Event::IO (very undocumented) to do
104 non-blocking i/o.
105 - performance tuning.
106
107 0.08 Thu Jul 19 06:13:25 CEST 2001
108 - release candidate 2 (new functionality).
109 - add Coro::State::flush function.
110 - transfer now supports a flags value (mostly for speed ATM).
111 - might compile and work in the presence of threads now.
112 - continuations have a saner syntax.
113 - no more memleaks.
114
115 0.07 Tue Jul 17 17:40:18 CEST 2001
116 - release candidate 1 ;)
117 - slightly nicer code.
118 - fixed a scheduling bug in Coro::Event.
119
120 0.06 Tue Jul 17 04:23:24 CEST 2001
121 - ok, I found the showstopper - the same sub must not be
122 re-entered in two different coroutines, otherwise => crash. I
123 see no easy solution to this problem, except by walking the call
124 chaing and saving/restoring the cv's, which is what I do now.
125 - memory leaks still latent, especially at thread termination.
126 - Coro::Event now works (haha).
127
128 0.05 Sun Jul 15 17:32:20 CEST 2001
129 - fixed a few issues in Coro::Event.
130 - I forgot to include Coro::Event in 0.04 :(:(:(
131
132 0.04 Sun Jul 15 05:24:59 CEST 2001
133 - @_ is now properly localized.
134 - Coro::State is now easier subclassable.
135 - Coro::Cont now coroutine-aware.
136 - Coro::Specific is a low-overhead module to create
137 coroutine-specific vars.
138 - Coro::Event provides a simple interface to Event.
139
140 0.03 Fri Jul 13 14:51:52 CEST 2001
141 - transfer() now implemented in XS (beware).
142 - new module Coro::Cont for really faked continuations.
143 - big internal architecture changes: Coro::State is now
144 really low-level and can thus be used to implement other
145 interesting things, While "Coro::" implements a process-like
146 model. Still crude and subject to change.
147 - $_ and $@ are no longer being localized.
148
149 0.02 Tue Jul 10 01:38:17 CEST 2001
150 - implemented "async" attribute.
151 - $_ and $@ are now localized.
152 - added Coro::Channel.
153 - more testcases, still no docs.
154
155 0.01 Tue Jul 3 02:18:41 CEST 2001
156 - original version; copied from Convert::Scalar.
157