[Python-checkins] cpython: Close #12153: faulthandler, mark stack_overflow() as static

victor.stinner python-checkins at python.org
Mon May 23 12:30:37 CEST 2011


http://hg.python.org/cpython/rev/ad1ea4961ead
changeset:   70290:ad1ea4961ead
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Mon May 23 12:29:10 2011 +0200
summary:
  Close #12153: faulthandler, mark stack_overflow() as static

files:
  Modules/faulthandler.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c
--- a/Modules/faulthandler.c
+++ b/Modules/faulthandler.c
@@ -854,7 +854,7 @@
 }
 
 #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
-void*
+static void*
 stack_overflow(void *min_sp, void *max_sp, size_t *depth)
 {
     /* allocate 4096 bytes on the stack at each call */

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list