summaryrefslogtreecommitdiff
path: root/libs/ardour/butler.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-03-02 22:41:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-03-02 22:41:46 +0000
commit10b224790b5a371d70f99d84b38ff82b82680e97 (patch)
tree61de8a81bff4203a937dc3f837ea6674e703c71c /libs/ardour/butler.cc
parent2ad819c956d8d77ddfd65cdf35c91deef9cee74d (diff)
increase butler event pool size dramatically
git-svn-id: svn://localhost/ardour2/branches/3.0@9047 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/butler.cc')
-rw-r--r--libs/ardour/butler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc
index 72f2a0971d..27b1c0fc27 100644
--- a/libs/ardour/butler.cc
+++ b/libs/ardour/butler.cc
@@ -135,7 +135,7 @@ Butler::terminate_thread ()
void *
Butler::_thread_work (void* arg)
{
- SessionEvent::create_per_thread_pool ("butler events", 64);
+ SessionEvent::create_per_thread_pool ("butler events", 4096);
pthread_set_name (X_("butler"));
return ((Butler *) arg)->thread_work ();
}