1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core: architecture dependent part in thread_t

This commit is contained in:
Gunar Schorcht 2018-07-05 09:22:38 +02:00
parent c71f40370b
commit e75e0a5fe6

View File

@ -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