Skip to content
Snippets Groups Projects
Commit c94114c6 authored by Jeremie Deray's avatar Jeremie Deray
Browse files

wip SensorBase enable threaded processor

parent db354340
No related branches found
No related tags found
1 merge request!90[WIP] ProcessorBase multi-threading
This commit is part of merge request !90. Comments created here will be created in the context of that merge request.
...@@ -162,6 +162,7 @@ inline ProcessorBasePtr SensorBase::addProcessor(ProcessorBasePtr _proc_ptr) ...@@ -162,6 +162,7 @@ inline ProcessorBasePtr SensorBase::addProcessor(ProcessorBasePtr _proc_ptr)
processor_list_.push_back(_proc_ptr); processor_list_.push_back(_proc_ptr);
_proc_ptr->setSensorPtr(shared_from_this()); _proc_ptr->setSensorPtr(shared_from_this());
_proc_ptr->setProblem(getProblem()); _proc_ptr->setProblem(getProblem());
_proc_ptr->run();
return _proc_ptr; return _proc_ptr;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment