mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-18 09:08:33 -04:00
Just tidy up indentation in SuperH port.c.
This commit is contained in:
parent
8f6e5062d4
commit
e854ebf1f5
1 changed files with 7 additions and 6 deletions
|
@ -99,12 +99,13 @@ extern unsigned long ulPortGetGBR( void );
|
|||
*/
|
||||
portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )
|
||||
{
|
||||
*pxTopOfStack = 0x11111111UL;
|
||||
pxTopOfStack--;
|
||||
*pxTopOfStack = 0x22222222UL;
|
||||
pxTopOfStack--;
|
||||
*pxTopOfStack = 0x33333333UL;
|
||||
pxTopOfStack--;
|
||||
/* Mark the end of the stack - used for debugging only and can be removed. */
|
||||
*pxTopOfStack = 0x11111111UL;
|
||||
pxTopOfStack--;
|
||||
*pxTopOfStack = 0x22222222UL;
|
||||
pxTopOfStack--;
|
||||
*pxTopOfStack = 0x33333333UL;
|
||||
pxTopOfStack--;
|
||||
|
||||
/* SR. */
|
||||
*pxTopOfStack = portINITIAL_SR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue