Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
robotpkg-wip
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
robotpkg-wip
Commits
9a50b536
Commit
9a50b536
authored
11 years ago
by
Arnaud Degroote
Browse files
Options
Downloads
Patches
Plain Diff
[wip/hyper] Add a patch fixing a race in compute_wait_expression
parent
b8662d05
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hyper/Makefile
+1
-0
1 addition, 0 deletions
hyper/Makefile
hyper/distinfo
+1
-0
1 addition, 0 deletions
hyper/distinfo
hyper/patches/patch-aa
+21
-0
21 additions, 0 deletions
hyper/patches/patch-aa
with
23 additions
and
0 deletions
hyper/Makefile
+
1
−
0
View file @
9a50b536
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
hyper/distinfo
+
1
−
0
View file @
9a50b536
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
This diff is collapsed.
Click to expand it.
hyper/patches/patch-aa
0 → 100644
+
21
−
0
View file @
9a50b536
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,
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment