kernel: move more internal smp calls into internal domain

Move 3 more internal APIs into internal area as the first step for
cleanup. Having them in kernel.h is just an invitation for them to be
used by someone.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-09-19 10:59:34 +00:00 committed by Carles Cufí
commit cc2a558707
2 changed files with 4 additions and 4 deletions

View file

@ -16,4 +16,8 @@ void z_smp_thread_init(void *arg, struct k_thread *thread);
void z_smp_thread_swap(void); void z_smp_thread_swap(void);
#endif #endif
void z_init_cpu(int id);
void z_sched_ipi(void);
void z_smp_start_cpu(int id);
#endif #endif

View file

@ -358,8 +358,4 @@ struct k_thread {
typedef struct k_thread _thread_t; typedef struct k_thread _thread_t;
typedef struct k_thread *k_tid_t; typedef struct k_thread *k_tid_t;
void z_init_cpu(int id);
void z_sched_ipi(void);
void z_smp_start_cpu(int id);
#endif #endif