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

core/thread: drop unused thread_arch_t

No architecture makes use of thread_arch_t anymore, so let's drop it.
This commit is contained in:
Marian Buschsieweke 2023-05-21 11:33:28 +02:00
parent 8fc1187278
commit aed175b14b
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94
2 changed files with 2 additions and 4 deletions

View File

@ -122,7 +122,6 @@
#include "clist.h"
#include "cib.h"
#include "msg.h"
#include "cpu_conf.h"
#include "sched.h"
#include "thread_config.h"
@ -207,9 +206,6 @@ struct _thread {
#ifdef PICOLIBC_TLS
void *tls; /**< thread local storage ptr */
#endif
#ifdef HAVE_THREAD_ARCH_T
thread_arch_t arch; /**< architecture dependent part */
#endif
};
/**

View File

@ -20,6 +20,8 @@
#ifndef THREAD_ARCH_H
#define THREAD_ARCH_H
#include "cpu_conf.h"
#ifdef __cplusplus
extern "C" {
#endif