diff options
Diffstat (limited to 'gclib.cpp')
-rw-r--r-- | gclib.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gclib.cpp b/gclib.cpp new file mode 100644 index 0000000..3181dcd --- /dev/null +++ b/gclib.cpp @@ -0,0 +1,45 @@ +/* Tuplr: A programming language + * Copyright (C) 2008-2009 David Robillard <dave@drobilla.net> + * + * Tuplr is free software: you can redistribute it and/or modify it under + * the terms of the GNU Affero General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. + * + * Tuplr 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. See the GNU Affero General + * Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Tuplr. If not, see <http://www.gnu.org/licenses/>. + */ + +#include "tuplr.hpp" +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + +extern "C" { + +void +tuplr_gc_initialize(unsigned heapSize) +{ + //printf("LLVM GC INIT %u\n", heapSize); +} + +void* +tuplr_gc_allocate(unsigned size) +{ + //printf("LLVM GC ALLOC %u\n", size); + return malloc(size); +} + +void +tuplr_gc_collect() +{ + //printf("LLVM GC COLLECT\n"); +} + +} + |