13
0

pt_import: Bump thread pool constant from 64 to 2048 to prevent import crash

This commit is contained in:
Damien Zammit 2020-02-02 18:41:17 +11:00
parent 8264865dd8
commit beaa6a7ae4

View File

@ -126,7 +126,7 @@ Editor::external_pt_dialog ()
void * void *
Editor::_import_pt_thread (void *arg) Editor::_import_pt_thread (void *arg)
{ {
SessionEvent::create_per_thread_pool ("import pt events", 64); SessionEvent::create_per_thread_pool ("import pt events", 2048);
Editor *ed = (Editor *) arg; Editor *ed = (Editor *) arg;
return ed->import_pt_thread (); return ed->import_pt_thread ();