diff runtime/context.h @ 63:04baa003de5a

Merged latest changes with better C branch
author Mike Pavone <pavone@retrodev.com>
date Wed, 05 May 2010 22:12:23 -0400
parents d2f9b0a9403d 70af7fa155d0
children d4b44ae2e34a
line wrap: on
line diff
--- a/runtime/context.h	Sat Oct 10 16:43:37 2009 -0400
+++ b/runtime/context.h	Wed May 05 22:12:23 2010 -0400
@@ -22,6 +22,7 @@
 stackchunk * new_stack();
 context * new_context();
 void * alloc_stack(context * ct, uint32_t size);
-struct calldata * alloc_cdata(context * ct, struct calldata * lastframe, uint32_t num_params);
-void free_stack(context * ct, void * data);
+calldata * alloc_cdata(context * ct, uint32_t num_params);
+void free_stack(context * ct, void * data);
+void free_context(context * c);
 #endif //_CONTEXT_H_