See ChangeLog from 2005-03-02.
[bpt/guile.git] / libguile / stackchk.c
CommitLineData
58ade102 1/* Copyright (C) 1995,1996,1997, 2000, 2001 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
0f2d19dd 7 *
73be1d9e
MV
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
6e8d25a6 17
6e8d25a6 18
0f2d19dd
JB
19\f
20
a0599745
MD
21#include "libguile/_scm.h"
22#include "libguile/ports.h"
23#include "libguile/root.h"
0f2d19dd 24
a0599745 25#include "libguile/stackchk.h"
0f2d19dd
JB
26\f
27
28/* {Stack Checking}
29 */
30
39f1ef51
MD
31#ifdef STACK_CHECKING
32int scm_stack_checking_enabled_p;
0f2d19dd 33
523f5266
GH
34SCM_SYMBOL (scm_stack_overflow_key, "stack-overflow");
35
0f2d19dd
JB
36void
37scm_report_stack_overflow ()
38{
39f1ef51 39 scm_stack_checking_enabled_p = 0;
01f61221 40 scm_error (scm_stack_overflow_key,
f5bf2977
GH
41 NULL,
42 "Stack overflow",
43 SCM_BOOL_F,
44 SCM_BOOL_F);
0f2d19dd
JB
45}
46
47#endif
1cc91f1b 48
1be6b49c 49long
6e8d25a6 50scm_stack_size (SCM_STACKITEM *start)
0f2d19dd
JB
51{
52 SCM_STACKITEM stack;
8dda3eea 53#if SCM_STACK_GROWS_UP
0f2d19dd
JB
54 return &stack - start;
55#else
56 return start - &stack;
8dda3eea 57#endif /* SCM_STACK_GROWS_UP */
0f2d19dd
JB
58}
59
1cc91f1b 60
0f2d19dd
JB
61void
62scm_stack_report ()
0f2d19dd 63{
9de87eea 64 SCM port = scm_current_error_port ();
0f2d19dd 65 SCM_STACKITEM stack;
9de87eea
MV
66 scm_i_thread *thread = SCM_I_CURRENT_THREAD;
67
68 scm_uintprint ((scm_stack_size (thread->continuation_base)
69 * sizeof (SCM_STACKITEM)),
70 16, port);
71 scm_puts (" of stack: 0x", port);
72 scm_uintprint ((scm_t_bits) thread->continuation_base, 16, port);
73 scm_puts (" - 0x", port);
74 scm_uintprint ((scm_t_bits) &stack, 16, port);
75 scm_puts ("\n", port);
0f2d19dd
JB
76}
77
0f2d19dd
JB
78void
79scm_init_stackchk ()
0f2d19dd 80{
a0599745 81#include "libguile/stackchk.x"
0f2d19dd 82}
89e00824
ML
83
84/*
85 Local Variables:
86 c-file-style: "gnu"
87 End:
88*/