1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/thread doc: Point to helper function

This commit is contained in:
chrysn 2022-01-20 14:18:40 +01:00
parent f511a64302
commit fef782f735

View File

@ -444,7 +444,7 @@ const char *thread_getname(kernel_pid_t pid);
*
* Only works if the thread was created with the flag THREAD_CREATE_STACKTEST.
*
* @param[in] stack the stack you want to measure. Try `thread_get_active()->stack_start`
* @param[in] stack the stack you want to measure. Try `thread_get_stackstart(thread_get_active())`
*
* @return the amount of unused space of the thread's stack
*/