Major memory management overhaul. Added arena support. Use the secure
[u/mdw/catacomb] / mp-misc.c
index 7f5513f..840f947 100644 (file)
--- a/mp-misc.c
+++ b/mp-misc.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: mp-misc.c,v 1.1 1999/11/17 18:02:16 mdw Exp $
+ * $Id: mp-misc.c,v 1.2 2000/06/17 11:45:09 mdw Exp $
  *
  * Miscellaneous multiprecision support functions
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: mp-misc.c,v $
+ * Revision 1.2  2000/06/17 11:45:09  mdw
+ * Major memory management overhaul.  Added arena support.  Use the secure
+ * arena for secret integers.  Replace and improve the MP management macros
+ * (e.g., replace MP_MODIFY by MP_DEST).
+ *
  * Revision 1.1  1999/11/17 18:02:16  mdw
  * New multiprecision integer arithmetic suite.
  *
 
 #include "mp.h"
 
-/*----- Paranoia management -----------------------------------------------*/
-
-/* --- @mp_burn@ --- *
- *
- * Arguments:  @mp *m@ = pointer to a multiprecision integer
- *
- * Returns:    ---
- *
- * Use:                Marks the integer as `burn-after-use'.  When the integer's
- *             memory is deallocated, it is deleted so that traces can't
- *             remain in the swap file.  In theory.
- */
-
-void mp_burn(mp *m)
-{
-  m->f |= MP_BURN;
-}
-
 /*----- Basic manipulation ------------------------------------------------*/
 
 /* --- @mp_shrink@ --- *