Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_average_point_cloud
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
labrobotica
ros
navigation
3d_navigation
iri_average_point_cloud
Merge requests
!1
Changed the macro used to create new plugins.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Changed the macro used to create new plugins.
melodic_migration
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Fernando Herrero
requested to merge
melodic_migration
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Used the nodelet_spin() function in the nodelet.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
461b81ce
1 commit,
3 years ago
2 files
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/iri_average_point_cloud_alg_node.cpp
+
2
−
2
Options
@@ -151,10 +151,10 @@ void *AveragePointCloudAlgNodelet::spin_thread(void *param)
{
AveragePointCloudAlgNodelet
*
nodelet
=
(
AveragePointCloudAlgNodelet
*
)
param
;
nodelet
->
node
->
spin
();
nodelet
->
node
->
nodelet_
spin
();
pthread_exit
(
NULL
);
}
// parameters are: package, class name, class type, base class type
PLUGINLIB_
DECLARE_CLASS
(
iri_average_point_cloud
,
AveragePointCloudAlgNodelet
,
AveragePointCloudAlgNodelet
,
nodelet
::
Nodelet
);
PLUGINLIB_
EXPORT_CLASS
(
AveragePointCloudAlgNodelet
,
nodelet
::
Nodelet
);
Loading