From b4718b5cc8334489a1eb50df9db920bc0b01375c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 18 Nov 2012 00:05:31 +0000 Subject: Fix Plugin=>UI ring overflow handling. Gracefully handle client receiving nodes with as-yet unknown plugins. Don't initially send all plugins to UI (kills LV2 in particular), request on demand instead. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4829 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/ingen_lv2.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/server/ingen_lv2.cpp') diff --git a/src/server/ingen_lv2.cpp b/src/server/ingen_lv2.cpp index fcada858..f64e9c45 100644 --- a/src/server/ingen_lv2.cpp +++ b/src/server/ingen_lv2.cpp @@ -337,7 +337,6 @@ public: } if (seq->atom.size + sizeof(LV2_Atom) + atom.size > _notify_capacity) { - std::cerr << "Notify overflow" << std::endl; break; // Output port buffer full, resume next time } @@ -357,7 +356,9 @@ public: seq->atom.size += sizeof(LV2_Atom_Event) + ev->body.size; } - _to_ui_overflow_sem.post(); + if (_to_ui_overflow) { + _to_ui_overflow_sem.post(); + } } virtual SampleCount block_length() const { return _block_length; } -- cgit v1.2.1