Update to V5.0.3.

This commit is contained in:
Richard Barry 2008-07-30 20:04:29 +00:00
parent a1edce40d2
commit 16b6baf10c
509 changed files with 615 additions and 603 deletions

View file

@ -1,5 +1,5 @@
/*
FreeRTOS.org V5.0.2 - Copyright (C) 2003-2008 Richard Barry.
FreeRTOS.org V5.0.3 - Copyright (C) 2003-2008 Richard Barry.
This file is part of the FreeRTOS.org distribution.
@ -101,7 +101,7 @@ void xPortSysTickHandler( void );
/*
* Start first task is a separate function so it can be tested in isolation.
*/
extern void vPortStartFirstTask( unsigned portLONG ulValue );
extern void vPortStartFirstTask( void );
/*-----------------------------------------------------------*/
@ -142,7 +142,7 @@ portBASE_TYPE xPortStartScheduler( void )
uxCriticalNesting = 0;
/* Start the first task. */
vPortStartFirstTask( *((unsigned portLONG *) 0 ) );
vPortStartFirstTask();
/* Should not get here! */
return 0;