mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
prolong the cothread misery by increasing the stack size to something remotely reasonable.
This commit is contained in:
parent
1457f41324
commit
a95e67c319
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user