kernel: cleanup use of naked unsigned in _new_thread

There are a few places that we used an naked unsigned type, lets be
explicit and make it 'unsigned int'.

Change-Id: I33fcbdec4a6a1c0b1a2defb9a5844d282d02d80e
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-21 11:41:26 -05:00 committed by Andrew Boie
commit 5742a508a2
6 changed files with 8 additions and 8 deletions

View file

@ -71,7 +71,7 @@ static ALWAYS_INLINE void thread_monitor_init(struct k_thread *thread)
void _new_thread(char *pStackMem, size_t stackSize,
_thread_entry_t pEntry,
void *parameter1, void *parameter2, void *parameter3,
int priority, unsigned options)
int priority, unsigned int options)
{
_ASSERT_VALID_PRIO(priority, pEntry);