ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Try following this tutorial to run your code in a debugger. This will give you more information regarding the error. You should also check your log files.
If your code runs for 10 minutes and then dies, my first guess would be a memory leak that's causing an overflow.
2 | No.2 Revision |
Try following this tutorial to run your code in a debugger. This will give you more information regarding the error. You should also check your log files.
If your code runs for 10 minutes and then dies, my first guess would be a memory leak that's causing an overflow.
EDIT: This probably won't solve your problem, but is there any condition in your main()
in which you return 050? According to gdb, that's the return code being received from the main()
. Perhaps you don't have a return statement in main()
?