Re: [ros-users] Running ROS on Gumstix | rosout hangs within…

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Sebastian Haug
Date:  
To: ros-users
Subject: Re: [ros-users] Running ROS on Gumstix | rosout hangs within futex()
Hi Daniel,

thanks for the input!
On Tue, Aug 3, 2010 at 4:31 PM, Daniel Stonier <> wrote:
> Just noticed that all of those failed open library calls are smoke and
> mirrors....its searching in alot of places, but eventually finds and opens
> all of the libraries successfully. So probably no need to worry about that.
>
> The last function call before the futex is a gettimeofday call. Can you
> compile a normal program with that call and get it to run?

Just did that. When I compile using g++ without ROS (or in my package
but without the roscpp dependency in place) it works, when I compile
it with the roscpp dependency it gets stuck within the futex after the
first gettimeofday().

The gettimeofday() call is not the one I try to execute in my code. My
gettimeofday() call is located after an output to the console, which
is not displayed, it gets stuck before it comes to echo something.

Probably I will set up a debugger on the gumstix and try to figure out
which in library and where the futex() and gettimeofday() calls are
made.

Thanks!
Sebastian