zephyr: use k_thread_entry_t everywhere
In various places, a private _thread_entry_t, or the full prototype were being used. Be consistent and use the same typedef everywhere. Signen-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
d414e7c7ee
commit
1e06ffc815
11 changed files with 41 additions and 46 deletions
|
@ -50,7 +50,7 @@
|
|||
*/
|
||||
|
||||
void _new_thread(struct k_thread *thread, k_thread_stack_t stack,
|
||||
size_t stackSize, _thread_entry_t pEntry,
|
||||
size_t stackSize, k_thread_entry_t pEntry,
|
||||
void *parameter1, void *parameter2, void *parameter3,
|
||||
int priority, unsigned int options)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue