[pypy-commit] stmgc default: Fix

arigo noreply at buildbot.pypy.org
Fri Mar 14 11:22:34 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1011:3c39b8d8e184
Date: 2014-03-14 11:22 +0100
http://bitbucket.org/pypy/stmgc/changeset/3c39b8d8e184/

Log:	Fix

diff --git a/gil-c7/stmgc.h b/gil-c7/stmgc.h
--- a/gil-c7/stmgc.h
+++ b/gil-c7/stmgc.h
@@ -28,7 +28,10 @@
 extern stm_thread_local_t *_stm_tloc;
 extern char *_stm_nursery_current, *_stm_nursery_end;
 
-struct stm_segment_info_s { stm_jmpbuf_t *jmpbuf_ptr; };
+struct stm_segment_info_s {
+    stm_jmpbuf_t *jmpbuf_ptr;  /* compat only -- always NULL */
+    char *nursery_current;     /* compat only -- always NULL */
+};
 extern struct stm_segment_info_s _stm_segment;
 #define STM_SEGMENT (&_stm_segment)
 


More information about the pypy-commit mailing list