From 54fc3118f51bd4ed93549ae4a3ecd64c3ce6e628 Mon Sep 17 00:00:00 2001 From: Tommy Persson <tommy.persson@liu.se> Date: Thu, 24 Sep 2015 16:46:46 +0200 Subject: [PATCH] For execution control functionality --- .gitignore | 1 + CMakeLists.txt | 3 +++ srv/TSTContinueExecutor.srv | 10 ++++++++++ srv/TSTEnoughExecutor.srv | 10 ++++++++++ srv/TSTPauseExecutor.srv | 10 ++++++++++ 5 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 srv/TSTContinueExecutor.srv create mode 100644 srv/TSTEnoughExecutor.srv create mode 100644 srv/TSTPauseExecutor.srv diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/CMakeLists.txt b/CMakeLists.txt index 935466d..cf62134 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,14 +55,17 @@ add_service_files( DIRECTORY srv FILES TSTAbortExecutor.srv + TSTContinueExecutor.srv TSTCreateExecutor.srv TSTDestroyExecutor.srv + TSTEnoughExecutor.srv TSTExecutorCheck.srv TSTExecutorContinue.srv TSTExecutorExpand.srv TSTExecutorIsDelegationExpandable.srv TSTExecutorGetConstraints.srv TSTExecutorRequestPause.srv + TSTPauseExecutor.srv TSTStartExecutor.srv ) diff --git a/srv/TSTContinueExecutor.srv b/srv/TSTContinueExecutor.srv new file mode 100644 index 0000000..8e6150f --- /dev/null +++ b/srv/TSTContinueExecutor.srv @@ -0,0 +1,10 @@ +# +# Continue the executor +# + +string ns # Namespace for the tstfactory +int32 id # id for the TST node in the tstfactory +--- +bool success +int32 error +string reason diff --git a/srv/TSTEnoughExecutor.srv b/srv/TSTEnoughExecutor.srv new file mode 100644 index 0000000..dcaf2ed --- /dev/null +++ b/srv/TSTEnoughExecutor.srv @@ -0,0 +1,10 @@ +# +# Enough the executor +# + +string ns # Namespace for the tstfactory +int32 id # id for the TST node in the tstfactory +--- +bool success +int32 error +string reason diff --git a/srv/TSTPauseExecutor.srv b/srv/TSTPauseExecutor.srv new file mode 100644 index 0000000..2599d56 --- /dev/null +++ b/srv/TSTPauseExecutor.srv @@ -0,0 +1,10 @@ +# +# Pause the executor +# + +string ns # Namespace for the tstfactory +int32 id # id for the TST node in the tstfactory +--- +bool success +int32 error +string reason -- GitLab