Do not limit stack-size when freezing tracks
This fixes an issue with plugin state save/restore. Some require excessive stack to do that (looking at you b.oops.lv2). The main GUI thread has no stack limit, so this is only an issue when calling state save/restore from background threads.
This commit is contained in:
parent
4f3b8a9776
commit
b82900858f
@ -4116,7 +4116,7 @@ Editor::freeze_route ()
|
||||
|
||||
InterthreadProgressWindow ipw (current_interthread_info, _("Freeze"), _("Cancel Freeze"));
|
||||
|
||||
pthread_create_and_store (X_("freezer"), &itt.thread, _freeze_thread, this);
|
||||
pthread_create_and_store (X_("freezer"), &itt.thread, _freeze_thread, this, 0);
|
||||
|
||||
CursorContext::Handle cursor_ctx = CursorContext::create(*this, _cursors->wait);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user