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
In file minimal_atomic_message.cpp, the reentrant callback group is declared locally (in the scope of the constructor function) at line 37. The group will go out of scope when the callback function has finished execution. Therefore, timer callbacks that are assigned to this callback group will be disabled and will not execute on spin.
The callback group should be a class member variable.
The text was updated successfully, but these errors were encountered:
In file minimal_atomic_message.cpp, the reentrant callback group is declared locally (in the scope of the constructor function) at line 37. The group will go out of scope when the callback function has finished execution. Therefore, timer callbacks that are assigned to this callback group will be disabled and will not execute on spin.
The callback group should be a class member variable.
The text was updated successfully, but these errors were encountered: