From 76c3ac8d285deef88f41e6cbba1f3c77a49df179 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 3 Apr 2018 18:23:08 +0200 Subject: WIP: parallel stuff --- src/server/GraphImpl.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/server/GraphImpl.cpp') diff --git a/src/server/GraphImpl.cpp b/src/server/GraphImpl.cpp index ef3ef4d4..f2a0c634 100644 --- a/src/server/GraphImpl.cpp +++ b/src/server/GraphImpl.cpp @@ -232,7 +232,8 @@ void GraphImpl::run(RunContext& context) { if (_compiled_graph) { - Server::run(_compiled_graph->master(), context); + Job job{&_compiled_graph->master(), nullptr}; + Server::run(job, context); } } -- cgit v1.2.1