Giter VIP home page Giter VIP logo

Comments (1)

meyerj avatar meyerj commented on August 20, 2024

True, this looks like a bug. But there are two possible solutions:

  • copy the arguments to a std::vector<const char *> argvv and pass argvv.data() to ros::init() as suggested
  • let __os_main_argc(void) return an int reference so that ros::init() can also update the counter variable (to 1 in your example)

ros::init(argc, argv, ...) is designed to modify ("consume") the remapping arguments, so that another command line parser later on would not complain about unknown options [1]. In case of rtt_rosnode this happens too late to hide the remapping arguments from the deployer, but for other plugins it might still be useful if they are loaded after rtt_rosnode. That is also the reason why you have to add a double-dash in the deployer command line before any remapping arguments [2].

As I am not aware of any other plugin that parses command line arguments and no plugin should depend on the exact order in which it is loaded anyway, I would vote for the first option.

[1] http://wiki.ros.org/roscpp/Overview/Initialization%20and%20Shutdown#Initializing_the_roscpp_Node
[2] http://wiki.ros.org/ocl#Roslaunch_for_OROCOS_components

from rtt_ros_integration.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.