Browse thread
Causes for segfaults
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2010-11-15 (19:21) |
From: | Daniel de Rauglaudre <daniel.de_rauglaudre@i...> |
Subject: | Re: [Caml-list] Causes for segfaults |
On Mon, Nov 15, 2010 at 08:00:05PM +0100, Anil Madhavapeddy wrote: > The runtime can detect native stack overflow if the OS supports > it. See the HAS_STACK_OVERFLOW_DETECTION define in the configure > script : $ grep HAS_STA config/s.h #define HAS_STACK_OVERFLOW_DETECTION $ cat > segfault.ml let rec ints n = n :: ints (n+1) let _ = ints 0 $ ocamlopt segfault.ml $ ./a.out Segmentation fault -- Daniel de Rauglaudre http://pauillac.inria.fr/~ddr/