uncrustify
This commit is contained in:
parent
b0a196ee9f
commit
3ef83ec292
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ namespace executor
|
||||||
{
|
{
|
||||||
|
|
||||||
/// Coordinates the order and timing of available communication tasks.
|
/// Coordinates the order and timing of available communication tasks.
|
||||||
/* Executor provides spin functions (including spin_node_once and spin_some).
|
/* Executor provides spin functions (including spin_node_once and spin_some).
|
||||||
* It coordinates the nodes and callback groups by looking for available work and completing it,
|
* It coordinates the nodes and callback groups by looking for available work and completing it,
|
||||||
* based on the threading or concurrency scheme provided by the subclass implementation.
|
* based on the threading or concurrency scheme provided by the subclass implementation.
|
||||||
* An example of available work is executing a subscription callback, or a timer callback.
|
* An example of available work is executing a subscription callback, or a timer callback.
|
||||||
|
|
|
@ -101,7 +101,7 @@ public:
|
||||||
|
|
||||||
/// Default constructor.
|
/// Default constructor.
|
||||||
/* \param[in] period The interval at which the timer fires.
|
/* \param[in] period The interval at which the timer fires.
|
||||||
* \param[in] callback User-specified callback function.
|
* \param[in] callback User-specified callback function.
|
||||||
*/
|
*/
|
||||||
GenericTimer(std::chrono::nanoseconds period, CallbackType callback)
|
GenericTimer(std::chrono::nanoseconds period, CallbackType callback)
|
||||||
: TimerBase(period, callback), loop_rate_(period)
|
: TimerBase(period, callback), loop_rate_(period)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue