Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r191:ba37dce6e637
Date: 2013-06-19 09:21 +0200
http://bitbucket.org/pypy/stmgc/changeset/ba37dce6e637/

Log:    Can't assert this

diff --git a/c4/et.c b/c4/et.c
--- a/c4/et.c
+++ b/c4/et.c
@@ -202,7 +202,9 @@
   gcptrlist_insert(&d->list_of_read_objects, P);
 
  add_in_recent_reads_cache:
-  assert(!(P->h_tid & GCFLAG_NURSERY_MOVED));
+  /* The risks are that the following assert fails, because the flag was
+     added just now by a parallel thread during stealing... */
+  /*assert(!(P->h_tid & GCFLAG_NURSERY_MOVED));*/
   fxcache_add(&d->recent_reads_cache, P);
   return P;
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to