mirror of https://github.com/ARMmbed/mbed-os.git
Updated attach_thread_terminate_hook doxygen comments
parent
ad88218a35
commit
4cdcdc1010
|
@ -47,14 +47,14 @@ uint64_t get_ms_count();
|
||||||
/** Attach a function to be called by the RTOS idle task
|
/** Attach a function to be called by the RTOS idle task
|
||||||
@param fptr pointer to the function to be called
|
@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));
|
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
|
@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));
|
void attach_thread_terminate_hook(void (*fptr)(osThreadId_t id));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue