You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RTT has a way to register a callback on input ports. We could use this mechanism to provide a blocking #wait method (and probably a #wait_one_sample higher-level method) that blocks until the callback is called by RTT. This would most probably reduce the CPU usage of Async quite a bit.
Two notes about the implementation:
should block with timeout
must release the MRI global lock while waiting
The text was updated successfully, but these errors were encountered:
RTT has a way to register a callback on input ports. We could use this mechanism to provide a blocking
#wait
method (and probably a#wait_one_sample
higher-level method) that blocks until the callback is called by RTT. This would most probably reduce the CPU usage of Async quite a bit.Two notes about the implementation:
The text was updated successfully, but these errors were encountered: