caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* The sharing mechanism in the  Marshal module
@ 2007-03-03 14:59 Deokhwan Kim
  2007-03-04 14:38 ` Zheng Li
  2007-03-07 14:59 ` [Caml-list] " Roland Zumkeller
  0 siblings, 2 replies; 3+ messages in thread
From: Deokhwan Kim @ 2007-03-03 14:59 UTC (permalink / raw)
  To: caml-list

Hello,

I thought the following code would produce 2 in (* 1 *), but as it is it
outputs 1:

let incr =
let c = ref 0 in
function () -> c:= !c + 1 ; !c

let save =
Marshal.to_string incr [Marshal.Closures]

let incr1 =
(Marshal.from_string save 0 : unit -> int)

let () =
Printf.printf "%d\n" (incr ()) ;
Printf.printf "%d\n" (incr1 ()) (* 1 *)

Why? In addtion, what should I do if I really want the sharing of the c
counter between incr and incr1?

Thanks.




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-03-07 14:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-03 14:59 The sharing mechanism in the Marshal module Deokhwan Kim
2007-03-04 14:38 ` Zheng Li
2007-03-07 14:59 ` [Caml-list] " Roland Zumkeller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).