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:
Andrew Boie 2017-09-11 09:30:04 -07:00 committed by Andrew Boie
commit 1e06ffc815
11 changed files with 41 additions and 46 deletions

View file

@ -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)
{