cross-thread handling of SessionEvent allocation/deallocation, with widespread consequences

git-svn-id: svn://localhost/ardour2/branches/3.0@6283 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-12-04 19:24:09 +00:00
parent 478fd92039
commit 4a3d7877f6
26 changed files with 233 additions and 49 deletions

View file

@ -50,7 +50,11 @@ BasicUI::~BasicUI ()
void
BasicUI::register_thread (std::string name)
{
std::string pool_name = name;
pool_name += " events";
PBD::notify_gui_about_thread_creation (pthread_self(), name);
SessionEvent::create_per_thread_pool (pool_name, 64);
}
void