From 612c0a02cc461c2f45c409fd8c6b87bae5c7247d 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 cfb8ab9f..b9f9111f 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);