Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
d9ff6ab
engine: run updateHook() only upon trigger or timeout
Mar 31, 2015
56cbddc
ports: restore default callback is trigger for event ports
Oct 22, 2014
c8a9b85
taskcontext: revert TriggerOnStart from property to attribute.
Apr 1, 2015
23d3a13
activity: fix slave activity in case no master or period is set
Apr 1, 2015
3b4087a
simulationactivity: also call work() after step().
Apr 1, 2015
77fca62
ports: process event port callbacks in all situations
Apr 1, 2015
45e44c1
tests: more tests for slave activities.
Apr 1, 2015
f1c8ebc
taskcore: count update/callback cycles
Apr 2, 2015
a626eb0
extras: added missing initializers to one of the FileDescriptorActivi…
meyerj Feb 9, 2015
1f1d68b
activity: cleanups + solve double stepping
Apr 2, 2015
06146b6
activity: implement abs/rel wait and overrun detection.
Apr 3, 2015
70ba5a3
engine: bail out early if message queue is empty
Apr 3, 2015
f266337
ports: use the message queue for port callbacks
Apr 3, 2015
047f92d
doc:add diagrams explaining the new/improved execution semantics
Apr 3, 2015
42a62e8
engine: remove support for child taskcontexts
Apr 3, 2015
d0f7919
scripting: remove cycle checking in sm scripts
Apr 13, 2015
58cb4bb
engine/activity: fixed blocking calls to ExecutionEngine::process()
meyerj Apr 13, 2015
8d53590
Merge pull request #3 from meyerj/master-update-hook-vs-callback-queue
Apr 13, 2015
d662010
scripting: use timeout() instead of trigger() when events arrive in a SM
psoetens Apr 30, 2015
719b781
Revert "ports: use the message queue for port callbacks"
meyerj Dec 16, 2015
0f71761
Moved portqueue from class TaskContext to the ExecutionEngine
meyerj Dec 16, 2015
431f81a
Fixed documentation
meyerj Dec 17, 2015
fdd405a
Removed obsolete prepareUpdateHook() method from class TaskCore
meyerj Dec 17, 2015
a0e3d89
Merge pull request #4 from meyerj/master-update-hook-vs-callback-queue
Jan 28, 2016
4f48698
extras: fixed missing work() call in SlaveActivity for the periodic case
meyerj Jan 29, 2016
4d750bd
Call Activity::step() from Activity::loop() for the non-periodic case…
meyerj Feb 2, 2016
71fe065
Merge pull request #6 from meyerj/master-update-hook-vs-callback-queue
Feb 2, 2016
7a8e488
engine: fixed forwarding of messages and port callbacks received in s…
meyerj Apr 5, 2016
603cd3e
engine: fixed regression from 7a8e48871e7b25301e942bbbd3cbdcc2cac35de…
meyerj Jun 6, 2016
cb4a376
slaveactivity: forward isPeriodic() member call to the master engine
meyerj Jun 6, 2016
e49cdf0
activity: fixed Activity::isPeriodic()
meyerj Jun 21, 2016
d04b1e9
Revert "slaveactivity: forward isPeriodic() member call to the master…
meyerj Nov 16, 2016
b9f2f34
Revert "engine/activity: fixed blocking calls to ExecutionEngine::pro…
meyerj Feb 16, 2017
92ea90a
activity: fix pure virtual function calls at thread termination after…
meyerj Apr 13, 2015
521f076
Merge pull request #9 from meyerj/master-update-hook-vs-callback-queu…
meyerj Feb 22, 2017
2503803
activity: fixed missing initializers for member variables introduced …
meyerj Oct 15, 2017
29cf65e
Merge remote-tracking branch 'origin/master' into master-update-hook-…
meyerj Oct 15, 2017
f067d2d
Clear the task's provided and required service interface during destr…
meyerj Feb 2, 2017
afe081a
tests: replace BOOST_ASSERT by BOOST_REQUIRE
meyerj Dec 8, 2017
171a700
activity: revert behavior for ORO_WAIT_REL policy to always wait for …
Dec 26, 2017
6047c60
activity: revert default wait policy to ORO_WAIT_ABS
Dec 26, 2017
3cd22a4
activity: use int member variable to store wait period policy and fix…
meyerj Jan 8, 2018
00caecb
tests: added unit test for wait period policy of Activity class
meyerj Jan 9, 2018
09f5543
Merge pull request #2 from Intermodalics/fix/activity_sleep_oro_wait_…
meyerj Jan 16, 2018
6e6c7aa
Merge branch 'master' into master-update-hook-vs-callback-queue
meyerj Apr 15, 2019
c28ad74
Merge branch 'master' into master-update-hook-vs-callback-queue
meyerj Apr 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simulationactivity: also call work() after step().
Signed-off-by: Peter Soetens <[email protected]>
  • Loading branch information
Peter Soetens committed Apr 12, 2015
commit 3b4087a77a96350856ddaeb55f37d3c5a97118b8
1 change: 1 addition & 0 deletions rtt/extras/SimulationActivity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ namespace RTT {
{
if ( this->isRunning() ) {
this->step();
this->work(RunnableInterface::TimeOut);
return true;
}
return false;
Expand Down