diff options
author | David Robillard <d@drobilla.net> | 2009-06-28 23:29:27 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-28 23:29:27 +0000 |
commit | 2d925912c38c2557ac853fb1b6de5fd6e5d4c5b5 (patch) | |
tree | 2cba1e1d747218b1e9b1c55926e135cf21c8e586 /src/gclib.cpp | |
parent | 84274ac380968df9fb49bcbf6f3d494536d7a548 (diff) | |
download | resp-2d925912c38c2557ac853fb1b6de5fd6e5d4c5b5.tar.gz resp-2d925912c38c2557ac853fb1b6de5fd6e5d4c5b5.tar.bz2 resp-2d925912c38c2557ac853fb1b6de5fd6e5d4c5b5.zip |
Move code into src directory.
git-svn-id: http://svn.drobilla.net/resp/tuplr@160 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/gclib.cpp')
-rw-r--r-- | src/gclib.cpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/gclib.cpp b/src/gclib.cpp new file mode 100644 index 0000000..8c9f140 --- /dev/null +++ b/src/gclib.cpp @@ -0,0 +1,41 @@ +/* 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_allocate(unsigned size, uint8_t tag) +{ + static const size_t COLLECT_SIZE = 8 * 1024 * 1024; // 8 MiB + + static size_t allocated = 0; + allocated += size; + if (allocated > COLLECT_SIZE) { + Object::pool.collect(Object::pool.roots()); + allocated = 0; + } + + return Object::pool.alloc(size, (GC::Tag)tag); +} + +} + |