From 9752952b24c2a8511738b84835e60c2579c973d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lach?= Date: Mon, 8 Dec 2025 19:13:38 +0100 Subject: [PATCH] sys/threads: modify threadsinfo declaration JIRA: RTOS-1187 --- include/sys/threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sys/threads.h b/include/sys/threads.h index d5113427..83438eb0 100644 --- a/include/sys/threads.h +++ b/include/sys/threads.h @@ -74,7 +74,7 @@ static inline int beginthread(void (*start)(void *), unsigned int priority, void } -extern int threadsinfo(int n, threadinfo_t *info); +extern int threadsinfo(int tid, unsigned int flags, int n, threadinfo_t *info); extern int priority(int priority);