summaryrefslogtreecommitdiff
path: root/libgpython/include/gpython
diff options
context:
space:
mode:
authorredbrain <redbrain@crules.org>2010-07-10 03:12:59 +0100
committerredbrain <redbrain@crules.org>2010-07-10 03:12:59 +0100
commit85ce48435c348d04f9a5603e1a790bff8fb11051 (patch)
tree6a5be9ef0002be4cb33b47dfc9a68fe81cff142b /libgpython/include/gpython
parentdd727ba95e2b21723c1c50f1365c8cdaf7877db2 (diff)
downloadgcc-85ce48435c348d04f9a5603e1a790bff8fb11051.tar.gz
added garbage collection file
Diffstat (limited to 'libgpython/include/gpython')
-rw-r--r--libgpython/include/gpython/vectors.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libgpython/include/gpython/vectors.h b/libgpython/include/gpython/vectors.h
index ff29e9dac7f..0f34e09c39b 100644
--- a/libgpython/include/gpython/vectors.h
+++ b/libgpython/include/gpython/vectors.h
@@ -36,6 +36,13 @@ typedef struct gpy_hash_table_t {
gpy_hash_entry_t * array;
} gpy_hash_tab_t ;
+typedef struct gpy_rr_context_t {
+ gpy_vector_t * symbols;
+ /* ... maybe more things later date! */
+} gpy_context_t ;
+
+extern gpy_hash_tab_t * gpy_primitives;
+
extern gpy_hashval_t gpy_dd_hash_string( const char * );
extern gpy_hash_entry_t * gpy_dd_hash_lookup_table( gpy_hash_tab_t *, gpy_hashval_t );