kernel: rename z_new_thread()
This is part of the core kernel -> architecture interface and should have a leading prefix z_arch_. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
9e1dda8804
commit
61901ccb4c
15 changed files with 58 additions and 57 deletions
|
@ -41,10 +41,10 @@
|
|||
* pthreads stack and therefore we ignore the stack size
|
||||
*
|
||||
*/
|
||||
void z_new_thread(struct k_thread *thread, k_thread_stack_t *stack,
|
||||
size_t stack_size, k_thread_entry_t thread_func,
|
||||
void *arg1, void *arg2, void *arg3,
|
||||
int priority, unsigned int options)
|
||||
void z_arch_new_thread(struct k_thread *thread, k_thread_stack_t *stack,
|
||||
size_t stack_size, k_thread_entry_t thread_func,
|
||||
void *arg1, void *arg2, void *arg3,
|
||||
int priority, unsigned int options)
|
||||
{
|
||||
|
||||
char *stack_memory = Z_THREAD_STACK_BUFFER(stack);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue