doc: kernel: thread stack is not the same as stack object
Fix mixup of stack objects and thread stacks.
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
diff --git a/doc/reference/kernel/threads/index.rst b/doc/reference/kernel/threads/index.rst
index 11d26a3..de19b8e 100644
--- a/doc/reference/kernel/threads/index.rst
+++ b/doc/reference/kernel/threads/index.rst
@@ -542,3 +542,6 @@
.. doxygengroup:: thread_apis
:project: Zephyr
+
+.. doxygengroup:: thread_stack_api
+ :project: Zephyr
diff --git a/include/sys/thread_stack.h b/include/sys/thread_stack.h
index 99cef4b..a95f97a 100644
--- a/include/sys/thread_stack.h
+++ b/include/sys/thread_stack.h
@@ -10,6 +10,14 @@
* @brief Macros for declaring thread stacks
*/
+/**
+ * @brief Thread Stack APIs
+ * @ingroup kernel_apis
+ * @defgroup thread_stack_api Thread Stack APIs
+ * @{
+ * @}
+ */
+
#ifndef ZEPHYR_INCLUDE_SYS_THREAD_STACK_H
#define ZEPHYR_INCLUDE_SYS_THREAD_STACK_H
@@ -107,7 +115,7 @@
#define K_KERNEL_STACK_EXTERN(sym) extern k_thread_stack_t sym[]
/**
- * @addtogroup stack_apis
+ * @addtogroup thread_stack_api
* @{
*/
@@ -364,7 +372,7 @@
#define K_THREAD_STACK_EXTERN(sym) extern k_thread_stack_t sym[]
/**
- * @addtogroup stack_apis
+ * @addtogroup thread_stack_api
* @{
*/