Kernel.h doxygen update

pull/8435/head
Senthil Ramakrishnan 2018-10-15 13:59:36 -05:00
parent 13d6703676
commit ad88218a35
1 changed files with 3 additions and 3 deletions

View File

@ -47,14 +47,14 @@ uint64_t get_ms_count();
/** Attach a function to be called by the RTOS idle task
@param fptr pointer to the function to be called
@note You may call this function from ISR context.
@note You can call this function from ISR context.
*/
void attach_idle_hook(void (*fptr)(void));
/** Attach a function to be called when a task is killed
/** Attach a function to be called when a task is terminated
@param fptr pointer to the function to be called
@note You may call this function from ISR context.
@note You can call this function from ISR context.
*/
void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));