Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RobotAPI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
RobotAPI
Merge requests
!318
Fix: Robot State Memory: memory leak
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Robot State Memory: memory leak
fix/robot-state-memory-memory-leak
into
master
Overview
0
Commits
1
Pipelines
0
Changes
5
Merged
Fabian Reister
requested to merge
fix/robot-state-memory-memory-leak
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
bccaa7eb
1 commit,
2 years ago
5 files
+
46
−
45
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
source/RobotAPI/components/armem/server/RobotStateMemory/RobotStateMemory.h
+
2
−
1
Options
@@ -129,7 +129,8 @@ namespace armarx::armem::server::robot_state
proprioception
::
RobotStateWriter
writer
;
// queue
TripleBuffer
<
std
::
vector
<
proprioception
::
RobotUnitData
>>
dataBuffer
;
using
Queue
=
boost
::
lockfree
::
spsc_queue
<
proprioception
::
RobotUnitData
,
boost
::
lockfree
::
capacity
<
1024
>>
;
Queue
dataBuffer
;
bool
waitForRobotUnit
=
false
;
};
Loading