aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src/chregistry.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/src/chregistry.c')
-rw-r--r--os/kernel/src/chregistry.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/kernel/src/chregistry.c b/os/kernel/src/chregistry.c
index 216758c85..95893de85 100644
--- a/os/kernel/src/chregistry.c
+++ b/os/kernel/src/chregistry.c
@@ -58,6 +58,8 @@
* least one thread in the system.
*
* @return A reference to the most ancient thread.
+ *
+ * @api
*/
Thread *chRegFirstThread(void) {
Thread *tp;
@@ -79,6 +81,8 @@ Thread *chRegFirstThread(void) {
* @param[in] tp pointer to the thread
* @return A reference to the next thread.
* @retval NULL if there is no next thread.
+ *
+ * @api
*/
Thread *chRegNextThread(Thread *tp) {
Thread *ntp;