diff include/urweb.h @ 832:249740301a0a

Fix pathmap bug; expose lower-level heap manipulation from C
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 May 2009 13:43:02 -0400
parents 5e1a4b12c83a
children 158d980889ac
line wrap: on
line diff
--- a/include/urweb.h	Sun May 31 12:41:34 2009 -0400
+++ b/include/urweb.h	Sun May 31 13:43:02 2009 -0400
@@ -196,4 +196,8 @@
 
 void uw_register_transactional(uw_context, void *data, uw_callback commit, uw_callback rollback, uw_callback free);
 
+void uw_check_heap(uw_context, size_t extra);
+char *uw_heap_front(uw_context);
+void uw_set_heap_front(uw_context, char*);
+
 #endif