Updated attach_thread_terminate_hook doxygen comments

pull/8435/head
Senthil Ramakrishnan 2018-10-29 13:53:19 -05:00
parent ad88218a35
commit 4cdcdc1010
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 can call this function from ISR context.
@note You may call this function from ISR context.
*/
void attach_idle_hook(void (*fptr)(void));
/** Attach a function to be called when a task is terminated
/** Attach a function to be called when a thread terminates.
@param fptr pointer to the function to be called
@note You can call this function from ISR context.
@note You may call this function from ISR context.
*/
void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));