Skip to content
Snippets Groups Projects
Commit 9a50b536 authored by Arnaud Degroote's avatar Arnaud Degroote
Browse files

[wip/hyper] Add a patch fixing a race in compute_wait_expression

parent b8662d05
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ VERSION= 0.12
CATEGORIES= supervision
MASTER_SITES= ${MASTER_SITE_OPENROBOTS:=hyper/}
MASTER_REPOSITORY= ${MASTER_REPOSITORY_OPENROBOTS}hyper
PKGREVISION= 1
MAINTAINER= arnaud.degroote@laas.fr
......
SHA1 (hyper-0.12.tar.gz) = 4b6e7009e6c40957e119ee067046eb4aa162525f
RMD160 (hyper-0.12.tar.gz) = fe01256fa881adc7d31683063cf110d60fa3aac1
Size (hyper-0.12.tar.gz) = 204234 bytes
SHA1 (patch-aa) = 96b3acb7096f395da4d4a419758c02092ecd35f3
Fix a race in pause / resume handling in wait_computation
The invariant running ^ waiting was not respected, and so the code was
possibly wrong. If the method is paused while waiting state (but still
in running before) and then resumed in the same state, the resume part
will call compute, which will call async_wait when it has finished. Two
async_wait on the same time lead to an ECANCELED on the first one, and
so the whole method is aborted.
diff --git a/src/model/compute_wait_expression.cc b/src/model/compute_wait_expression.cc
index 9cf324d..bcdf061 100644
--- src/model/compute_wait_expression.cc
+++ src/model/compute_wait_expression.cc
@@ -52,6 +52,7 @@ namespace hyper {
return;
waiting = true;
+ running = false;
deadline_.expires_from_now(delay_);
deadline_.async_wait(boost::bind(&compute_wait_expression::handle_timeout,
this,
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