Skip to content

Commit 517ac72

Browse files
committed
Issue python#9670: Increase the default stack size for secondary threads on
Mac OS X and FreeBSD to reduce the chances of a crash instead of a "maximum recursion depth" RuntimeError exception. (Patch by Ronald Oussoren)
1 parent e620d10 commit 517ac72

3 files changed

Lines changed: 47 additions & 0 deletions

File tree

Lib/test/test_threading.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,36 @@ def test_daemonize_active_thread(self):
650650
thread.start()
651651
self.assertRaises(RuntimeError, setattr, thread, "daemon", True)
652652

653+
def test_recursion_limit(self):
654+
# Issue 9670
655+
# test that excessive recursion within a non-main thread causes
656+
# an exception rather than crashing the interpreter on platforms
657+
# like Mac OS X or FreeBSD which have small default stack sizes
658+
# for threads
659+
script = """if True:
660+
import threading
661+
662+
def recurse():
663+
return recurse()
664+
665+
def outer():
666+
try:
667+
recurse()
668+
except RuntimeError:
669+
pass
670+
671+
w = threading.Thread(target=outer)
672+
w.start()
673+
w.join()
674+
print('end of main thread')
675+
"""
676+
expected_output = "end of main thread\n"
677+
p = subprocess.Popen([sys.executable, "-c", script],
678+
stdout=subprocess.PIPE)
679+
stdout, stderr = p.communicate()
680+
data = stdout.decode().replace('\r', '')
681+
self.assertEqual(p.returncode, 0, "Unexpected error")
682+
self.assertEqual(data, expected_output)
653683

654684
class LockTests(lock_tests.LockTests):
655685
locktype = staticmethod(threading.Lock)

Misc/NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ What's New in Python 3.1.4?
1010
Core and Builtins
1111
-----------------
1212

13+
- Issue #9670: Increase the default stack size for secondary threads on
14+
Mac OS X and FreeBSD to reduce the chances of a crash instead of a
15+
"maximum recursion depth" RuntimeError exception.
16+
(original patch by Ronald Oussoren)
17+
1318
- Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
1419
(EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
1520
written by Charles-Francois Natali.

Python/thread_pthread.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@
1818
#ifndef THREAD_STACK_SIZE
1919
#define THREAD_STACK_SIZE 0 /* use default stack size */
2020
#endif
21+
22+
#if (defined(__APPLE__) || defined(__FreeBSD__)) && defined(THREAD_STACK_SIZE) && THREAD_STACK_SIZE == 0
23+
/* The default stack size for new threads on OSX is small enough that
24+
* we'll get hard crashes instead of 'maximum recursion depth exceeded'
25+
* exceptions.
26+
*
27+
* The default stack size below is the minimal stack size where a
28+
* simple recursive function doesn't cause a hard crash.
29+
*/
30+
#undef THREAD_STACK_SIZE
31+
#define THREAD_STACK_SIZE 0x100000
32+
#endif
2133
/* for safety, ensure a viable minimum stacksize */
2234
#define THREAD_STACK_MIN 0x8000 /* 32kB */
2335
#else /* !_POSIX_THREAD_ATTR_STACKSIZE */

0 commit comments

Comments
 (0)