* src/mm/boehm.h: Renamed to gc-common.h
[cacao.git] / src / mm / cacao-gc / gc.c
1 /* src/mm/cacao-gc/gc.c - main garbage collector methods
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Michael Starzinger
28
29    Changes:
30
31    $Id$
32
33 */
34
35
36 #include "config.h"
37 #include <signal.h>
38 #include <stdlib.h>
39 #include "vm/types.h"
40
41 #include "heap.h"
42 #include "toolbox/logging.h"
43 #include "vm/options.h"
44
45
46 /* gc_init *********************************************************************
47
48    Initializes the garbage collector.
49
50 *******************************************************************************/
51
52 void gc_init(u4 heapmaxsize, u4 heapstartsize)
53 {
54         if (opt_verbosegc)
55                 dolog("GC: Initialising with heap-size %d (max. %d)",
56                         heapstartsize, heapmaxsize);
57
58         heap_base = malloc(heapstartsize);
59
60         if (heap_base == NULL)
61                 exceptions_throw_outofmemory_exit();
62
63         heap_current_size = heapstartsize;
64         heap_maximal_size = heapmaxsize;
65
66         dolog("GC: Got base pointer %p", heap_base);
67 }
68
69
70 void gc_call(void)
71 {
72         if (opt_verbosegc)
73                 dolog("GC: Forced Collection");
74 }
75
76
77 int GC_signum1()
78 {
79         return SIGUSR1;
80 }
81
82
83 int GC_signum2()
84 {
85         return SIGUSR2;
86 }
87
88
89 /*
90  * These are local overrides for various environment variables in Emacs.
91  * Please do not remove this and leave it at the end of the file, where
92  * Emacs will automagically detect them.
93  * ---------------------------------------------------------------------
94  * Local variables:
95  * mode: c
96  * indent-tabs-mode: t
97  * c-basic-offset: 4
98  * tab-width: 4
99  * End:
100  */