Author: Tobias Weber <tobias_webe...@gmx.de>
Branch: c8-tcp-style-trx-length
Changeset: r2103:5d396c49837a
Date: 2017-07-11 17:04 +0200
http://bitbucket.org/pypy/stmgc/changeset/5d396c49837a/

Log:    Merge instrumentation updates

diff --git a/c8/stm/core.c b/c8/stm/core.c
--- a/c8/stm/core.c
+++ b/c8/stm/core.c
@@ -358,9 +358,6 @@
 static struct stm_commit_log_entry_s *_create_commit_log_entry(void)
 {
     /* puts all modified_old_objects in a new commit log entry */
-
-    start_timer();
-
     // we don't need the privatization lock, as we are only
     // reading from modified_old_objs and nobody but us can change it
     struct list_s *list = STM_PSEGMENT->modified_old_objects;
@@ -374,8 +371,6 @@
     result->written_count = count;
     memcpy(result->written, list->items, count * sizeof(struct stm_undo_s));
 
-    stop_timer_and_publish(STM_DURATION_CREATE_CLE);
-
     return result;
 }
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to