xtensa port: Fixed compilation error introduced by recent changes.
The error was introduced by
b8823c4efd
Change-Id: Ibf930107a7a690e0cb0851b7c247d524e3cb89e5
Signed-off-by: Mazen NEIFER <mazen@nestwave.com>
This commit is contained in:
parent
89c23e1c72
commit
35a48decfa
1 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ extern void _xt_user_exit(void);
|
|||
* @param p1 first param to entry point
|
||||
* @param p2 second param to entry point
|
||||
* @param p3 third param to entry point
|
||||
* @param prio thread priority
|
||||
* @param priority thread priority
|
||||
* @param options is unused (saved for future expansion)
|
||||
*
|
||||
* @return N/A
|
||||
|
@ -44,7 +44,7 @@ extern void _xt_user_exit(void);
|
|||
void _new_thread(char *pStack, size_t stackSize,
|
||||
void (*pEntry)(void *, void *, void *),
|
||||
void *p1, void *p2, void *p3,
|
||||
int prio, unsigned int options)
|
||||
int priority, unsigned int options)
|
||||
{
|
||||
/* Align stack end to maximum alignment requirement. */
|
||||
char *stackEnd = (char *)ROUND_DOWN(pStack + stackSize, 16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue