From 2bea474476d8da2524d764fea87f9dc000b6d7d7 Mon Sep 17 00:00:00 2001 From: Andrew MacIntyre Date: Mon, 17 Jan 2005 12:16:36 +0000 Subject: [PATCH] make thread stack size compile-time tunable on OS/2 --- Python/thread_os2.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Python/thread_os2.h b/Python/thread_os2.h index eeefe037600..a18ce6fd6c7 100644 --- a/Python/thread_os2.h +++ b/Python/thread_os2.h @@ -14,6 +14,10 @@ long PyThread_get_thread_ident(void); #endif +#if !defined(THREAD_STACK_SIZE) +#define THREAD_STACK_SIZE 0x10000 +#endif + /* * Initialization of the C package, should not be needed. */ @@ -31,7 +35,7 @@ PyThread_start_new_thread(void (*func)(void *), void *arg) int aThread; int success = 0; - aThread = _beginthread(func,NULL,65536,arg); + aThread = _beginthread(func, NULL, THREAD_STACK_SIZE, arg); if (aThread == -1) { success = -1;