Skip to content

Commit

Permalink
Merge pull request ros-planning#174 from adamantivm/fix-shutdown-dead…
Browse files Browse the repository at this point in the history
…lock

Fixes unclean costmap2d shutdown
  • Loading branch information
DLu committed Feb 25, 2014
2 parents 0af902d + 0eff566 commit e43e3e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion costmap_2d/include/costmap_2d/obstacle_layer.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ class ObstacleLayer : public CostmapLayer

laser_geometry::LaserProjection projector_; ///< @brief Used to project laser scans into point clouds

std::vector<boost::shared_ptr<tf::MessageFilterBase> > observation_notifiers_; ///< @brief Used to make sure that transforms are available for each sensor
std::vector<boost::shared_ptr<message_filters::SubscriberBase> > observation_subscribers_; ///< @brief Used for the observation message filters
std::vector<boost::shared_ptr<tf::MessageFilterBase> > observation_notifiers_; ///< @brief Used to make sure that transforms are available for each sensor
std::vector<boost::shared_ptr<costmap_2d::ObservationBuffer> > observation_buffers_; ///< @brief Used to store observations from various sensors
std::vector<boost::shared_ptr<costmap_2d::ObservationBuffer> > marking_buffers_; ///< @brief Used to store observation buffers used for marking obstacles
std::vector<boost::shared_ptr<costmap_2d::ObservationBuffer> > clearing_buffers_; ///< @brief Used to store observation buffers used for clearing obstacles
Expand Down

0 comments on commit e43e3e0

Please sign in to comment.