core: fix some doxygen warnings

This commit is contained in:
Tommaso Pecorella
2021-10-24 17:14:32 +02:00
parent 41217eb018
commit d1169d40ad
2 changed files with 12 additions and 4 deletions

View File

@@ -112,16 +112,25 @@ public:
/** \copydoc ScheduleWithContext(uint32_t,const Time&,EventImpl*) */
void ScheduleRealtimeWithContext (uint32_t context, const Time &delay, EventImpl *event);
/** \copydoc Schedule(const Time&,EventImpl*) */
/**
* Schedule a future event execution (in the same context).
*
* @param [in] delay Delay until the event expires.
* @param [in] event The event to schedule.
*/
void ScheduleRealtime (const Time &delay, EventImpl *event);
/**
* \copybrief ScheduleNow(EventImpl*)
* Schedule an event to run at the current virtual time.
*
* \param [in] context Event context.
* \param [in] event The event to schedule.
*/
void ScheduleRealtimeNowWithContext (uint32_t context, EventImpl *event);
/** \copydoc ScheduleNow(EventImpl*) */
/**
* Schedule an event to run at the current virtual time.
*
* @param [in] event The event to schedule.
*/
void ScheduleRealtimeNow (EventImpl *event);
/**
* Get the current real time from the synchronizer.

View File

@@ -464,7 +464,6 @@ public:
* @param [in] delay Delay until the event expires.
* @param [in] context Event context.
* @param [in] event The event to schedule.
* @returns A unique identifier for the newly-scheduled event.
*/
static void ScheduleWithContext (uint32_t context, const Time &delay, EventImpl *event);