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

Comparing Coro/Coro/Makefile.PL (file contents):
Revision 1.9 by root, Fri Jul 27 02:51:33 2001 UTC vs.
Revision 1.10 by root, Sun Jul 29 04:13:29 2001 UTC

25print <<EOF; 25print <<EOF;
26 26
27Version 0.12 introduced experimental C context sharing. This makes it 27Version 0.12 introduced experimental C context sharing. This makes it
28possible to share the C stack and context between many coroutines, 28possible to share the C stack and context between many coroutines,
29resulting in memory savings and slight speed gains, at the cost of 29resulting in memory savings and slight speed gains, at the cost of
30potential segfaults. On my Linux/x86 machine this decreased the size of 30potential segfaults (especially with exception handling). On my Linux/x86
31a new coroutine from 9k to 5k, the savings are much more apparent on 31machine this decreased the size of a new coroutine from 9k to 5k, the
32machines without mmap or good memory management. This algorithm relies 32savings are much more apparent on machines without mmap or good memory
33on the non-fact that the same machine stack pointer indicates the same 33management. This algorithm relies on the non-fact that the same machine
34function call nesting level, which usually works good enough but might 34stack pointer indicates the same function call nesting level, which
35fail... 35usually works good enough but might fail...
36 36
37Disabling this option is safe, as it only increases memory consumption. 37The default (disabled) is safe, as it only increases memory consumption.
38 38
39EOF 39EOF
40 40
41print "Do you want to enable experimental context sharing (y/n) [n]? "; 41print "Do you want to enable experimental context sharing (y/n) [n]? ";
42 42

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines