arch: all: Remove legacy code

The struct _kernel_ach exists only because ARC' s port needed it, in
all other ports this was defined as an empty struct. Turns out that
this struct is not required even for ARC anymore, this is a legacy
code from nanokernel time.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2019-04-17 13:15:26 -07:00 committed by Andrew Boie
commit d61c679d43
10 changed files with 0 additions and 54 deletions

View file

@ -167,9 +167,6 @@ struct z_kernel {
#if defined(CONFIG_THREAD_MONITOR)
struct k_thread *threads; /* singly linked list of ALL threads */
#endif
/* arch-specific part of _kernel */
struct _kernel_arch arch;
};
typedef struct z_kernel _kernel_t;