From a95e67c319e42895684147d80bebea4b7c8e16a8 Mon Sep 17 00:00:00 2001 From: smf- Date: Thu, 28 Jul 2011 19:38:05 +0000 Subject: [PATCH] prolong the cothread misery by increasing the stack size to something remotely reasonable. --- src/emu/cothread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/cothread.h b/src/emu/cothread.h index 30405771489..e75dee02f59 100644 --- a/src/emu/cothread.h +++ b/src/emu/cothread.h @@ -64,7 +64,7 @@ class cothread public: // construction/destruction cothread(cothread_t existing_thread); - cothread(cothread_entry_delegate entry, size_t stack = 65536); + cothread(cothread_entry_delegate entry, size_t stack = 1048576); ~cothread() { if (m_creator_cothread != NULL) co_delete(m_cothread); } // switching