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:
parent
a48e8790d3
commit
5742a508a2
6 changed files with 8 additions and 8 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue