From 396dde16363a6890f71a9d3273b62e00f9d4acc3 Mon Sep 17 00:00:00 2001 From: frosch Date: Wed, 24 Dec 2014 17:17:18 +0000 Subject: (svn r27092) -Fix/Add [FS#6186]: Compilation on OS/2 (smedles) --- src/thread/thread_os2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread') diff --git a/src/thread/thread_os2.cpp b/src/thread/thread_os2.cpp index 93f04cac1..2dcb8288f 100644 --- a/src/thread/thread_os2.cpp +++ b/src/thread/thread_os2.cpp @@ -38,7 +38,7 @@ public: param(param), self_destruct(self_destruct) { - thread = _beginthread(stThreadProc, NULL, 32768, this); + thread = _beginthread(stThreadProc, NULL, 1048576, this); } /* virtual */ bool Exit() -- cgit v1.2.3-54-g00ecf