forked from Imagelibrary/rtems
PR 1907/testing * Makefile.am, configure.ac: Add tests for the CBS (Constant Bandwidth Server) scheduler. * spcbssched01/.cvsignore, spcbssched01/Makefile.am, spcbssched01/init.c, spcbssched01/spcbssched01.doc, spcbssched01/spcbssched01.scn, spcbssched01/system.h, spcbssched01/task1.c, spcbssched02/.cvsignore, spcbssched02/Makefile.am, spcbssched02/init.c, spcbssched02/spcbssched02.doc, spcbssched02/spcbssched02.scn, spcbssched02/system.h, spcbssched02/task_periodic.c, spcbssched03/.cvsignore, spcbssched03/Makefile.am, spcbssched03/cbsparams.h, spcbssched03/init.c, spcbssched03/spcbssched03.doc, spcbssched03/spcbssched03.scn, spcbssched03/system.h, spcbssched03/tasks_aperiodic.c, spcbssched03/tasks_periodic.c: New files.
64 lines
1.7 KiB
C
64 lines
1.7 KiB
C
/* Init
|
|
*
|
|
* This routine is the initialization task for this test program.
|
|
* It is a user initialization task and has the responsibility for creating
|
|
* and starting the tasks that make up the test. If the time of day
|
|
* clock is required for the test, it should also be set to a known
|
|
* value by this function.
|
|
*
|
|
* Input parameters:
|
|
* argument - task argument
|
|
*
|
|
* Output parameters: NONE
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#define CONFIGURE_INIT
|
|
#include "system.h"
|
|
|
|
#include "cbsparams.h"
|
|
|
|
rtems_task Init(
|
|
rtems_task_argument argument
|
|
)
|
|
{
|
|
uint32_t index;
|
|
rtems_status_code status;
|
|
|
|
puts( "\n\n*** TEST CBS SCHEDULER 3 ***" );
|
|
|
|
build_task_name();
|
|
|
|
for ( index = 1 ; index <= NUM_TASKS ; index++ ) {
|
|
status = rtems_task_create(
|
|
Task_name[ index ],
|
|
Priorities[ index ],
|
|
RTEMS_MINIMUM_STACK_SIZE * 4,
|
|
RTEMS_DEFAULT_MODES,
|
|
RTEMS_DEFAULT_ATTRIBUTES,
|
|
&Task_id[ index ]
|
|
);
|
|
directive_failed( status, "rtems_task_create loop" );
|
|
}
|
|
|
|
rtems_cbs_initialize();
|
|
|
|
for ( index = 1 ; index <= NUM_PERIODIC_TASKS ; index++ ) {
|
|
status = rtems_task_start( Task_id[ index ], Tasks_Periodic, index );
|
|
directive_failed( status, "rtems_task_start loop" );
|
|
}
|
|
|
|
for ( index = NUM_PERIODIC_TASKS+1 ; index <= NUM_TASKS ; index++ ) {
|
|
status = rtems_task_start( Task_id[ index ], Tasks_Aperiodic, index );
|
|
directive_failed( status, "rtems_task_start loop" );
|
|
}
|
|
|
|
status = rtems_task_delete( RTEMS_SELF );
|
|
directive_failed( status, "rtems_task_delete of RTEMS_SELF" );
|
|
}
|