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

Merge pull request #9364 from gschorcht/thread_arch

core: add architecture dependent thread information
This commit is contained in:
Kaspar Schleiser 2018-08-24 12:10:20 +02:00 committed by GitHub
commit 2d27b32567
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -209,6 +209,9 @@ struct _thread {
const char *name; /**< thread's name */
int stack_size; /**< thread's stack size */
#endif
#ifdef HAVE_THREAD_ARCH_T
thread_arch_t arch; /**< architecture dependent part */
#endif
};
/**