*** empty log message ***
[bpt/guile.git] / libguile / mallocs.c
CommitLineData
1bbd0b84 1/* classes: src_files
216eedfc 2 * Copyright (C) 1995,1997,1998,2000,2001 Free Software Foundation, Inc.
0f2d19dd
JB
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this software; see the file COPYING. If not, write to
82892bed 16 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
c22adbeb
MV
17 * Boston, MA 02111-1307 USA
18 *
19 * As a special exception, the Free Software Foundation gives permission
20 * for additional uses of the text contained in its release of GUILE.
21 *
22 * The exception is that, if you link the GUILE library with other files
23 * to produce an executable, this does not by itself cause the
24 * resulting executable to be covered by the GNU General Public License.
25 * Your use of that executable is in no way restricted on account of
26 * linking the GUILE library code into it.
27 *
28 * This exception does not however invalidate any other reasons why
29 * the executable file might be covered by the GNU General Public License.
30 *
31 * This exception applies only to the code released by the
32 * Free Software Foundation under the name GUILE. If you copy
33 * code from other Free Software Foundation releases into a copy of
34 * GUILE, as the General Public License permits, the exception does
35 * not apply to the code that you add in this way. To avoid misleading
36 * anyone as to the status of such modified files, you must delete
37 * this exception notice from them.
38 *
39 * If you write modifications of your own for GUILE, it is your choice
40 * whether to permit this exception to apply to your modifications.
41 * If you do not wish that, delete this exception notice. */
0f2d19dd 42
1bbd0b84
GB
43
44
0f2d19dd 45\f
0261dfae
RB
46#if HAVE_CONFIG_H
47# include <config.h>
48#endif
0f2d19dd 49
a0599745
MD
50#include "libguile/_scm.h"
51#include "libguile/ports.h"
52#include "libguile/smob.h"
20e6290e 53
a0599745 54#include "libguile/mallocs.h"
20e6290e 55
0f2d19dd 56#ifdef HAVE_MALLOC_H
95b88819 57#include <malloc.h>
0f2d19dd
JB
58#endif
59#ifdef HAVE_UNISTD_H
95b88819 60#include <unistd.h>
0f2d19dd
JB
61#endif
62
63
64\f
92c2555f 65scm_t_bits scm_tc16_malloc;
0f2d19dd 66
1cc91f1b 67
1be6b49c 68static size_t
e841c3e0 69malloc_free (SCM ptr)
0f2d19dd
JB
70{
71 if (SCM_MALLOCDATA (ptr))
72 free (SCM_MALLOCDATA (ptr));
73 return 0;
74}
75
1cc91f1b 76
0f2d19dd 77static int
e81d98ec 78malloc_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
0f2d19dd 79{
b7f3516f 80 scm_puts("#<malloc ", port);
54778cd3 81 scm_intprint (SCM_CELL_WORD_1 (exp), 16, port);
b7f3516f 82 scm_putc('>', port);
0f2d19dd
JB
83 return 1;
84}
85
86\f
0f2d19dd 87SCM
1be6b49c 88scm_malloc_obj (size_t n)
0f2d19dd 89{
67329a9e 90 scm_t_bits mem = n ? (scm_t_bits) scm_gc_malloc (n, "malloc smob") : 0;
0f2d19dd 91 if (n && !mem)
216eedfc 92 return SCM_BOOL_F;
23a62151 93 SCM_RETURN_NEWSMOB (scm_tc16_malloc, mem);
0f2d19dd
JB
94}
95
96
97\f
0f2d19dd
JB
98void
99scm_init_mallocs ()
0f2d19dd 100{
e841c3e0
KN
101 scm_tc16_malloc = scm_make_smob_type ("malloc", 0);
102 scm_set_smob_free (scm_tc16_malloc, malloc_free);
103 scm_set_smob_print (scm_tc16_malloc, malloc_print);
0f2d19dd 104}
89e00824
ML
105
106/*
107 Local Variables:
108 c-file-style: "gnu"
109 End:
110*/