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:
parent
a1c7bfbc63
commit
cc2a558707
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue