-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathgc.h
30 lines (23 loc) · 864 Bytes
/
gc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* This file is part of NIT ( http://www.nitlanguage.org ).
*
* Copyright 2009 Julien Chevalier <[email protected]>
*
* This file is free software, which comes along with NIT. This software is
* distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. You can modify it is you want, provided this header
* is kept unaltered, and a notification of the changes is added.
* You are allowed to redistribute it and sell it, alone or is a part of
* another product.
*/
#ifndef GC
#define GC
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include "nit_common.h"
void Nit_gc_init(void);
void *Nit_gc_malloc(size_t size);
void GC_add_static_object(val_t *pointer);
void Nit_gc_force_garbage_collection( void );
#endif