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:
parent
8fc1187278
commit
aed175b14b
@ -122,7 +122,6 @@
|
|||||||
#include "clist.h"
|
#include "clist.h"
|
||||||
#include "cib.h"
|
#include "cib.h"
|
||||||
#include "msg.h"
|
#include "msg.h"
|
||||||
#include "cpu_conf.h"
|
|
||||||
#include "sched.h"
|
#include "sched.h"
|
||||||
#include "thread_config.h"
|
#include "thread_config.h"
|
||||||
|
|
||||||
@ -207,9 +206,6 @@ struct _thread {
|
|||||||
#ifdef PICOLIBC_TLS
|
#ifdef PICOLIBC_TLS
|
||||||
void *tls; /**< thread local storage ptr */
|
void *tls; /**< thread local storage ptr */
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_THREAD_ARCH_T
|
|
||||||
thread_arch_t arch; /**< architecture dependent part */
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#ifndef THREAD_ARCH_H
|
#ifndef THREAD_ARCH_H
|
||||||
#define THREAD_ARCH_H
|
#define THREAD_ARCH_H
|
||||||
|
|
||||||
|
#include "cpu_conf.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user