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