Remove xcv_condp CV field which is no longer used.
[p5sagit/p5-mst-13.2.git] / run.c
diff --git a/run.c b/run.c
index e416160..1e1001d 100644 (file)
--- a/run.c
+++ b/run.c
 dEXT char **watchaddr = 0;
 dEXT char *watchok;
 
-#ifndef DEBUGGING
-
 int
-runops() {
+runops_standard() {
     dTHR;
     SAVEI32(runlevel);
     runlevel++;
@@ -33,12 +31,11 @@ runops() {
     return 0;
 }
 
-#else
-
+#ifdef DEBUGGING
 static void debprof _((OP*o));
 
 int
-runops() {
+runops_debug() {
     dTHR;
     if (!op) {
        warn("NULL OP IN RUN");
@@ -56,9 +53,6 @@ runops() {
            DEBUG_s(debstack());
            DEBUG_t(debop(op));
            DEBUG_P(debprof(op));
-#ifdef USE_THREADS
-           DEBUG_L(YIELD());   /* shake up scheduling a bit */
-#endif /* USE_THREADS */
        }
     } while ( op = (*op->op_ppaddr)(ARGS) );