[pypy-commit] stmgc default: +1

Raemi noreply at buildbot.pypy.org
Wed Sep 3 11:29:04 CEST 2014


Author: Remi Meier <remi.meier at inf.ethz.ch>
Branch: 
Changeset: r1335:40e30c73642d
Date: 2014-09-03 10:19 +0200
http://bitbucket.org/pypy/stmgc/changeset/40e30c73642d/

Log:	+1

diff --git a/c8/stm/core.c b/c8/stm/core.c
--- a/c8/stm/core.c
+++ b/c8/stm/core.c
@@ -85,7 +85,6 @@
     assert(STM_PSEGMENT->running_pthread == pthread_self());
 
     minor_collection(1);
-    abort();
 
     s_mutex_lock();
 
diff --git a/c8/test/support.py b/c8/test/support.py
--- a/c8/test/support.py
+++ b/c8/test/support.py
@@ -53,6 +53,8 @@
 void _set_ptr(object_t *obj, int n, object_t *v);
 object_t * _get_ptr(object_t *obj, int n);
 
+long _stm_count_modified_old_objects(void);
+object_t *_stm_enum_modified_old_objects(long index);
 
 void *memset(void *s, int c, size_t n);
 


More information about the pypy-commit mailing list