[svn:parrot] r39247 - trunk/src/interp
chromatic at svn.parrot.org
chromatic at svn.parrot.org
Sat May 30 01:08:38 UTC 2009
Author: chromatic
Date: Sat May 30 01:08:37 2009
New Revision: 39247
URL: https://trac.parrot.org/parrot/changeset/39247
Log:
[src] Cleaned up the dynops destruction invocation code so that prototypes
match.
Modified:
trunk/src/interp/inter_create.c
Modified: trunk/src/interp/inter_create.c
==============================================================================
--- trunk/src/interp/inter_create.c Sat May 30 00:55:46 2009 (r39246)
+++ trunk/src/interp/inter_create.c Sat May 30 01:08:37 2009 (r39247)
@@ -20,6 +20,7 @@
#include "parrot/parrot.h"
+#include "parrot/runcore_api.h"
#include "parrot/oplib/core_ops.h"
#include "../compilers/imcc/imc.h"
#include "inter_create.str"
@@ -444,7 +445,7 @@
mem_sys_free(interp->op_func_table);
/* deinit op_lib */
- Parrot_runcore_destroy();
+ Parrot_runcore_destroy(interp);
}
MUTEX_DESTROY(interpreter_array_mutex);
More information about the parrot-commits
mailing list