|
From: Vitor S. C. <vs...@us...> - 2001-06-08 19:10:47
|
Update of /cvsroot/yap/H
In directory usw-pr-cvs1:/tmp/cvs-serv13822/H
Modified Files:
Heap.h
Log Message:
use arrays to implement catch and throw instead of record
cleanup queues at top-level and at catch-throw.
Index: Heap.h
===================================================================
RCS file: /cvsroot/yap/H/Heap.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- Heap.h 2001/06/08 13:38:42 1.4
+++ Heap.h 2001/06/08 19:10:43 1.5
@@ -133,6 +133,7 @@
#endif
int primitives_module;
int user_module;
+ struct idb_queue *db_queues;
Atom
atom_abol,
atom_alarm,
@@ -316,6 +317,7 @@
#define ModuleName heap_regs->module_name
#define PrimitivesModule heap_regs->primitives_module
#define UserModule heap_regs->user_module
+#define DBQueues heap_regs->db_queues
#define NoOfModules heap_regs->no_of_modules
#define AtomAbol heap_regs->atom_abol
#define AtomAlarm heap_regs->atom_alarm
|