summaryrefslogtreecommitdiffstats
path: root/src/engine/ConnectionImpl.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-11-22 16:13:01 +0000
committerDavid Robillard <d@drobilla.net>2009-11-22 16:13:01 +0000
commit306ea241f0f1db66215bc177a1e8ec8ec341f509 (patch)
tree3340f05ae96cd3d98fd191bd0905d43e62a9b70d /src/engine/ConnectionImpl.cpp
parent1745a63b874c296253a27ca7ad95d3a7b17822f7 (diff)
downloadingen-306ea241f0f1db66215bc177a1e8ec8ec341f509.tar.gz
ingen-306ea241f0f1db66215bc177a1e8ec8ec341f509.tar.bz2
ingen-306ea241f0f1db66215bc177a1e8ec8ec341f509.zip
Enqueue message thread requests by the port, not by the node.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2283 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ConnectionImpl.cpp')
-rw-r--r--src/engine/ConnectionImpl.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/ConnectionImpl.cpp b/src/engine/ConnectionImpl.cpp
index 1973397d..db71df70 100644
--- a/src/engine/ConnectionImpl.cpp
+++ b/src/engine/ConnectionImpl.cpp
@@ -157,8 +157,7 @@ ConnectionImpl::queue(Context& context)
_queue->write(sizeof(LV2_Object) + obj->size, obj);
src_buf->increment();
- context.engine().message_context()->run(_dst_port->parent_node(),
- context.start() + ev->frames);
+ context.engine().message_context()->run(_dst_port, context.start() + ev->frames);
}
}