Bugs item #856491, was opened at 2003-12-08 22:09
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=856491&group_id=23735
Category: None
Group: None
Status: Open
Resolution: None
Priority: 7
Submitted By: Matthias Radestock (mradestock)
Assigned to: Nobody/Anonymous (nobody)
Summary: (de)serialization from REPL broken
Initial Comment:
The following used to work:
(import serial-io)
(define (foo x)
(+ x (call/cc (lambda (k)
(call-with-serial-output-file
"c:/test.ser"
(lambda (port) (serialize k port)))
1))))
(foo 10) ;=> 11
(exit)
(import serial-io)
(define k (call-with-serial-input-file "c:/test.ser"
deserialize))
(k 2) ;=> 12
However, in the current CVS version the deserialization
fails with
java.lang.InstantiationException: sisc.io.ReaderInputPort
...
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=379534&aid=856491&group_id=23735
-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills. Sign up for IBM's
Free Linux Tutorials. Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
|