[pypy-commit] pypy stmgc-static-barrier: import stmgc/c7b63aa9d1ad

arigo noreply at buildbot.pypy.org
Thu Aug 22 20:08:58 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-static-barrier
Changeset: r66293:001be0e0a57b
Date: 2013-08-22 20:08 +0200
http://bitbucket.org/pypy/pypy/changeset/001be0e0a57b/

Log:	import stmgc/c7b63aa9d1ad

diff --git a/rpython/translator/stm/src_stm/fprintcolor.c b/rpython/translator/stm/src_stm/fprintcolor.c
--- a/rpython/translator/stm/src_stm/fprintcolor.c
+++ b/rpython/translator/stm/src_stm/fprintcolor.c
@@ -69,13 +69,13 @@
     char *p = names;
     char *q;
     int i;
-    dprintf(("** Summary of the barrier calls **\n"));
+    fprintf(stderr, "** Summary of the barrier calls **\n");
     for (i = 0; i < STM_BARRIER_NUMBERS; i += 2) {
         q = strchr(p, '\n');
         *q = '\0';
-        dprintf(("%12ld  %s\n", stm_barriercount[i], p));
+        fprintf(stderr, "%12ld  %s\n", stm_barriercount[i], p);
         *q = '\n';
-        dprintf(("%12ld  \\ fast path\n", stm_barriercount[i + 1]));
+        fprintf(stderr, "%12ld  \\ fast path\n", stm_barriercount[i + 1]);
         p = q + 1;
     }
 }
diff --git a/rpython/translator/stm/src_stm/revision b/rpython/translator/stm/src_stm/revision
--- a/rpython/translator/stm/src_stm/revision
+++ b/rpython/translator/stm/src_stm/revision
@@ -1,1 +1,1 @@
-7b20231c8672
+c7b63aa9d1ad


More information about the pypy-commit mailing list