commit d73f39e479aa14206b4a120faf3e982019b79eee
parent 4d29882843181540b46c5d89c9fc70869fe79343
Author: Commit-Bot <unknown>
Date: Fri, 11 Jun 2010 11:19:55 +0000
Automatic commit from picoLisp.tgz, From: Fri, 11 Jun 2010 11:19:55 GMT
Diffstat:
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/ReleaseNotes b/ReleaseNotes
@@ -1,4 +1,4 @@
-14may10abu
+11jun10abu
(c) Software Lab. Alexander Burger
@@ -27,3 +27,14 @@ D. The 'format' number <-> string conversion function now also accepts a list
(format Lst)
will also do.
+
+E. PicoLisp now supports coroutines (multiple independent execution contexts),
+ though only in the 64-bit version. More about that in
+ "doc/ref.html#coroutines".
+
+F. The stack is now checked at runtime (also only in the 64-bit version). This
+ became necessary because coroutines require separate stack segments. Until
+ now (and still in the 32-bit version) the stack could grow until the
+ operating system sent a segmentation violation signal. With the stack checks,
+ a controlled error handler is entered upon stack overflow. The stack segment
+ size can be manipulated with the new 'stack' function.