summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2011-07-22 05:37:25 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2011-07-22 05:37:25 +0000
commit37455d7a506247beb5b26b6d270cc5b337493e50 (patch)
tree7467015d1147ba9eea540676c1fcc2e782a333c7
parent376501ea545c71282c3e21205accc57e25e63c8b (diff)
Increased stack size to alleviate most cothread issues (no whatsnew)
-rw-r--r--src/emu/cothread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cothread.h b/src/emu/cothread.h
index 5251216b59d..30405771489 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 = 16384);
+ cothread(cothread_entry_delegate entry, size_t stack = 65536);
~cothread() { if (m_creator_cothread != NULL) co_delete(m_cothread); }
// switching