From: "Vesa Karvonen" <vesa.karvonen@housemarque.fi>
To: <caml-list@inria.fr>
Subject: [Caml-list] Bug in Hashtbl ?
Date: Thu, 21 Mar 2002 17:27:05 +0200 [thread overview]
Message-ID: <000701c1d0ec$db7b6180$422aa8c0@housemarque.fi> (raw)
Hi,
The following program raises an Out_of_memory exception. Is this:
- correct behavior,
- bug in Ocaml 3.04,
- bug somewhere else?
<--- weird_out_of_memory.ml --->
type vertex =
| D of vertex list
let _ =
let rec n0 = D [n1]
and n1 = D [n0] in
let vertices = [n0;n1] in
let res = Hashtbl.create 0 in
List.iter
(fun v ->
assert (not (Hashtbl.mem res v)) ;
Hashtbl.add res v (ref 0))
vertices ;
()
<--- weird_out_of_memory.ml --->
Under Cygwin (1.3.10):
$ ocamlc.opt -o a.exe -g weird_out_of_memory.ml
$ a.exe
Fatal error: exception Out_of_memory
Raised from a C function
Called from module Weird_out_of_memory, character 220
Called from module List, character 1856
Called from module Weird_out_of_memory, character 270
Regards,
Vesa Karvonen
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next reply other threads:[~2002-03-21 16:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-03-21 15:27 Vesa Karvonen [this message]
2002-03-21 15:35 Vesa Karvonen
2002-03-21 15:46 ` Alain Frisch
2002-03-21 16:07 ` Vesa Karvonen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='000701c1d0ec$db7b6180$422aa8c0@housemarque.fi' \
--to=vesa.karvonen@housemarque.fi \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox