[pypy-commit] pypy default: Fix for issue1198.

arigo noreply at buildbot.pypy.org
Thu Mar 7 12:31:22 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r62176:db608eb643ed
Date: 2013-03-07 12:31 +0100
http://bitbucket.org/pypy/pypy/changeset/db608eb643ed/

Log:	Fix for issue1198.

diff --git a/rpython/translator/c/gcc/trackgcroot.py b/rpython/translator/c/gcc/trackgcroot.py
--- a/rpython/translator/c/gcc/trackgcroot.py
+++ b/rpython/translator/c/gcc/trackgcroot.py
@@ -1099,6 +1099,7 @@
         '___assert_rtn': None,
         'L___assert_rtn$stub': None,
         'L___eprintf$stub': None,
+        '__stack_chk_fail': None,
         }
     for _name in FunctionGcRootTracker.BASE_FUNCTIONS_NOT_RETURNING:
         FUNCTIONS_NOT_RETURNING[_name] = None
@@ -1160,6 +1161,7 @@
         '___assert_rtn': None,
         'L___assert_rtn$stub': None,
         'L___eprintf$stub': None,
+        '__stack_chk_fail': None,
         }
     for _name in FunctionGcRootTracker.BASE_FUNCTIONS_NOT_RETURNING:
         FUNCTIONS_NOT_RETURNING[_name] = None


More information about the pypy-commit mailing list