[pypy-commit] pypy continulet-jit: Kill debugging prints.

arigo noreply at buildbot.pypy.org
Sun Oct 16 15:10:02 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: continulet-jit
Changeset: r48079:24ab27e99c85
Date: 2011-10-16 13:32 +0200
http://bitbucket.org/pypy/pypy/changeset/24ab27e99c85/

Log:	Kill debugging prints.

diff --git a/pypy/translator/c/src/stacklet/stacklet.c b/pypy/translator/c/src/stacklet/stacklet.c
--- a/pypy/translator/c/src/stacklet/stacklet.c
+++ b/pypy/translator/c/src/stacklet/stacklet.c
@@ -268,7 +268,6 @@
            Call run(). */
         sid->stacklet = NULL;
         thrd->g_current_id = sid;
-        fprintf(stderr, "new sid: %p\n", sid);
         thrd->g_current_stack_stop = thrd->g_current_stack_marker;
         result = run(thrd->g_source, run_arg);
 
@@ -282,7 +281,6 @@
     }
     /* The second time it returns. */
     assert(thrd->g_current_id == sid1);
-    fprintf(stderr, "continue with sid: %p\n", sid1);
 }
 
 /************************************************************/


More information about the pypy-commit mailing list