Smob-related creanup.
[bpt/guile.git] / libguile / mallocs.c
CommitLineData
1bbd0b84 1/* classes: src_files
f2c9fcb0 2 * Copyright (C) 1995, 1997, 1998, 2000 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
JB
16 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307 USA */
0f2d19dd 18
1bbd0b84
GB
19/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
20 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
21
22
0f2d19dd
JB
23\f
24
25#include <stdio.h>
a0599745
MD
26#include "libguile/_scm.h"
27#include "libguile/ports.h"
28#include "libguile/smob.h"
20e6290e 29
a0599745 30#include "libguile/mallocs.h"
20e6290e 31
0f2d19dd 32#ifdef HAVE_MALLOC_H
95b88819 33#include <malloc.h>
0f2d19dd
JB
34#endif
35#ifdef HAVE_UNISTD_H
95b88819 36#include <unistd.h>
0f2d19dd
JB
37#endif
38
39
40\f
e841c3e0 41scm_bits_t scm_tc16_malloc;
0f2d19dd 42
1cc91f1b 43
0f2d19dd 44static scm_sizet
e841c3e0 45malloc_free (SCM ptr)
0f2d19dd
JB
46{
47 if (SCM_MALLOCDATA (ptr))
48 free (SCM_MALLOCDATA (ptr));
49 return 0;
50}
51
1cc91f1b 52
0f2d19dd 53static int
e841c3e0 54malloc_print (SCM exp, SCM port, scm_print_state *pstate)
0f2d19dd 55{
b7f3516f 56 scm_puts("#<malloc ", port);
54778cd3 57 scm_intprint (SCM_CELL_WORD_1 (exp), 16, port);
b7f3516f 58 scm_putc('>', port);
0f2d19dd
JB
59 return 1;
60}
61
62\f
0f2d19dd 63SCM
6e8d25a6 64scm_malloc_obj (scm_sizet n)
0f2d19dd 65{
54778cd3 66 scm_bits_t mem = n ? (scm_bits_t) malloc (n) : 0;
0f2d19dd
JB
67 if (n && !mem)
68 {
69 SCM_ALLOW_INTS;
70 return SCM_BOOL_F;
71 }
23a62151 72 SCM_RETURN_NEWSMOB (scm_tc16_malloc, mem);
0f2d19dd
JB
73}
74
75
76\f
0f2d19dd
JB
77void
78scm_init_mallocs ()
0f2d19dd 79{
e841c3e0
KN
80 scm_tc16_malloc = scm_make_smob_type ("malloc", 0);
81 scm_set_smob_free (scm_tc16_malloc, malloc_free);
82 scm_set_smob_print (scm_tc16_malloc, malloc_print);
0f2d19dd 83}
89e00824
ML
84
85/*
86 Local Variables:
87 c-file-style: "gnu"
88 End:
89*/