cvsuser 02/11/06 12:22:37
Modified: . interpreter.c
Log:
turn off on_exit currently
Revision Changes Path
1.111 +2 -4 parrot/interpreter.c
Index: interpreter.c
===================================================================
RCS file: /cvs/public/parrot/interpreter.c,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -w -r1.110 -r1.111
--- interpreter.c 6 Nov 2002 13:57:40 -0000 1.110
+++ interpreter.c 6 Nov 2002 20:22:37 -0000 1.111
@@ -1,7 +1,7 @@
/* interpreter.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: interpreter.c,v 1.110 2002/11/06 13:57:40 leo Exp $
+ * $Id: interpreter.c,v 1.111 2002/11/06 20:22:37 leo Exp $
* Overview:
* The interpreter api handles running the operations
* Data Structure and Algorithms:
@@ -22,7 +22,7 @@
# include "parrot/oplib/core_ops_cg.h"
#endif
-#define ATEXIT_DESTROY
+/* #define ATEXIT_DESTROY */
extern op_lib_t *PARROT_CORE_PREDEREF_OPLIB_INIT(void);
@@ -407,9 +407,7 @@
return ! (strcmp(value, "0") == 0);
}
-#ifdef ATEXIT_DESTROY
void Parrot_really_destroy(int exit_code, void *interpreter);
-#endif
/*=for api interpreter make_interpreter
* Create the Parrot interpreter. Allocate memory and clear the registers.