From e75e0a5fe6e36b075d9585714c9c4b92b5c3e90f Mon Sep 17 00:00:00 2001
From: Gunar Schorcht <gunar@schorcht.net>
Date: Thu, 5 Jul 2018 09:22:38 +0200
Subject: [PATCH] core: architecture dependent part in thread_t

---
 core/include/thread.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/include/thread.h b/core/include/thread.h
index 9c67066725..3a13e379c8 100644
--- a/core/include/thread.h
+++ b/core/include/thread.h
@@ -209,10 +209,10 @@ struct _thread {
     const char *name;               /**< thread's name                  */
     int stack_size;                 /**< thread's stack size            */
 #endif
-#ifdef HAVE_THREAD_ARCH_EXT_T 
-    thread_arch_ext_t arch;         /**< architecture dependent exten- 
-                                         sions                          */ 
-#endif };
+#ifdef HAVE_THREAD_ARCH_T
+    thread_arch_t arch;             /**< architecture dependent part    */
+#endif
+};
 
 /**
  * @def THREAD_STACKSIZE_DEFAULT
-- 
GitLab