summaryrefslogtreecommitdiffstats
path: root/c/src/tests/itrontests/itrontask03/init.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-11-11 00:54:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-11-11 00:54:00 +0000
commitc727a7eb3bf9e3c46d2ff5d38cd60609610b6795 (patch)
tree4db68bbd75f2363c86cde5d27a7c244cc723ed80 /c/src/tests/itrontests/itrontask03/init.c
parent2003-11-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-c727a7eb3bf9e3c46d2ff5d38cd60609610b6795.tar.bz2
2003-11-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* itronhello/.cvsignore: Remove. * itronhello/Makefile.am: Remove. * itronhello/init.c: Remove. * itronhello/itronhello.doc: Remove. * itronhello/itronhello.scn: Remove. * itronhello/system.h: Remove. * .cvsignore: Remove. * ChangeLog: Remove. * Makefile.am: Remove. * README: Remove. * configure.ac: Remove. * itrontests.am: Remove. * itronmbf01/.cvsignore: Remove. * itronmbf01/Makefile.am: Remove. * itronmbf01/init.c: Remove. * itronmbf01/itronmbf01.doc: Remove. * itronmbf01/itronmbf01.scn: Remove. * itronmbf01/system.h: Remove. * itronmbox01/.cvsignore: Remove. * itronmbox01/Makefile.am: Remove. * itronmbox01/init.c: Remove. * itronmbox01/itronmbox01.doc: Remove. * itronmbox01/itronmbox01.scn: Remove. * itronmbox01/system.h: Remove. * itronsem01/.cvsignore: Remove. * itronsem01/Makefile.am: Remove. * itronsem01/init.c: Remove. * itronsem01/itronsem01.doc: Remove. * itronsem01/itronsem01.scn: Remove. * itronsem01/system.h: Remove. * itrontask01/.cvsignore: Remove. * itrontask01/Makefile.am: Remove. * itrontask01/init.c: Remove. * itrontask01/itrontask01.doc: Remove. * itrontask01/itrontask01.scn: Remove. * itrontask01/system.h: Remove. * itrontask01/task1.c: Remove. * itrontask02/.cvsignore: Remove. * itrontask02/Makefile.am: Remove. * itrontask02/dormant.c: Remove. * itrontask02/init.c: Remove. * itrontask02/itrontask02.doc: Remove. * itrontask02/itrontask02.scn: Remove. * itrontask02/system.h: Remove. * itrontask03/.cvsignore: Remove. * itrontask03/Makefile.am: Remove. * itrontask03/init.c: Remove. * itrontask03/itrontask03.doc: Remove. * itrontask03/itrontask03.scn: Remove. * itrontask03/preempt.c: Remove. * itrontask03/system.h: Remove. * itrontask03/task1.c: Remove. * itrontask03/task2.c: Remove. * itrontask03/task3.c: Remove. * itrontask04/.cvsignore: Remove. * itrontask04/Makefile.am: Remove. * itrontask04/init.c: Remove. * itrontask04/itrontask04.doc: Remove. * itrontask04/itrontask04.scn: Remove. * itrontask04/system.h: Remove. * itrontask04/task1.c: Remove. * itrontask04/task2.c: Remove. * itrontask04/task3.c: Remove. * itrontime01/.cvsignore: Remove. * itrontime01/Makefile.am: Remove. * itrontime01/init.c: Remove. * itrontime01/itrontime01.doc: Remove. * itrontime01/itrontime01.scn: Remove. * itrontime01/system.h: Remove.
Diffstat (limited to '')
-rw-r--r--c/src/tests/itrontests/itrontask03/init.c144
1 files changed, 0 insertions, 144 deletions
diff --git a/c/src/tests/itrontests/itrontask03/init.c b/c/src/tests/itrontests/itrontask03/init.c
deleted file mode 100644
index 687518deaa..0000000000
--- a/c/src/tests/itrontests/itrontask03/init.c
+++ /dev/null
@@ -1,144 +0,0 @@
-/* Init
- *
- * This routine is the initialization task for this test program.
- * It is called from init_exec 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: NONE
- *
- * Output parameters: NONE
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * 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 TEST_INIT
-#include "system.h"
-#include <stdio.h>
-#include <assert.h>
-
-void ITRON_Init( void )
-{
- ER status;
- T_CTSK pk_ctsk;
- T_RTSK pk_rtsk;
-
- pk_ctsk.exinf = NULL;
- pk_ctsk.tskatr = TA_HLNG;
- pk_ctsk.stksz = RTEMS_MINIMUM_STACK_SIZE;
- pk_ctsk.itskpri = PREEMPT_PRIORITY;
- pk_ctsk.task = Preempt_task;
-
- puts( "\n\n*** ITRON TASK TEST 3 ***" );
-
- /*
- * Create and start the Preempt task the first time.
- * Verify that it is dormant when it comes back.
- */
-
- puts( "INIT - Create and Start PREEMPT" );
- status = chg_pri( TSK_SELF, (PREEMPT_PRIORITY+2) );
- directive_failed( status, "chg_pri of SELF" );
-
- status = cre_tsk( PREEMPT_TASK_ID, &pk_ctsk );
- directive_failed( status, "cre_tsk of RTEMS_PREEMPT" );
-
- status = sta_tsk( PREEMPT_TASK_ID, 0 );
- directive_failed( status, "sta_tsk of RTEMS_PREEMPT" );
- puts( "INIT - rot_rdq - no tasks at this priority" );
- status = rot_rdq( 1 );
- directive_failed( status, "rot_rdq" );
-
- puts( "INIT - ref_tsk PREEMPT - Validate DORMANT STATE" );
- status = ref_tsk( &pk_rtsk, PREEMPT_TASK_ID );
- directive_failed( status, "INIT - ref_tsk of RTEMS_PREEMPT");
- fatal_directive_status(pk_rtsk.tskstat,TTS_DMT,"tskstat of PREEMPT");
-
- /*
- * Restart the Preempt Task.
- */
-
- status = sta_tsk( PREEMPT_TASK_ID, 0 );
- directive_failed( status, "sta_tsk of RTEMS_PREEMPT" );
- puts( "INIT - rot_rdq - yielding processor" );
- status = rot_rdq( 1 );
- directive_failed( status, "rot_rdq" );
- puts( "INIT - ref_tsk PREEMPT - Validate no longer exists" );
- status = ref_tsk( &pk_rtsk, PREEMPT_TASK_ID );
- fatal_directive_status( status, E_NOEXS, "tskstat of PREEMPT");
- status = chg_pri( TSK_SELF, PREEMPT_PRIORITY );
- directive_failed( status, "chg_pri of SELF" );
-
- /*
- * XXX
- */
-
- pk_ctsk.itskpri = 3;
- pk_ctsk.task = Task_1;
- status = cre_tsk( TA1_ID, &pk_ctsk );
- directive_failed( status, "cre_tsk of TA1" );
-
- pk_ctsk.task = Task_2;
- status = cre_tsk( TA2_ID, &pk_ctsk );
- directive_failed( status, "cre_tsk of TA2" );
-
- pk_ctsk.task = Task_3;
- status = cre_tsk( TA3_ID, &pk_ctsk );
- directive_failed( status, "cre_tsk of TA3" );
-
- status = sta_tsk( TA1_ID, 0 );
- directive_failed( status, "sta_tsk of TA1" );
- status = sta_tsk( TA2_ID, 0 );
- directive_failed( status, "sta_tsk of TA2" );
- status = sta_tsk( TA3_ID, 0 );
- directive_failed( status, "sta_tsk of TA3" );
-
- status = ref_tsk( &pk_rtsk, TA1_ID);
- directive_failed( status, "INIT - ref_tsk of TA1");
- fatal_directive_status( pk_rtsk.tskstat, TTS_RDY , "tskstat of TA1");
-
- puts( "INIT - suspending TA2 while middle task on a ready chain" );
- status = sus_tsk( TA2_ID );
- directive_failed( status, "sus_tsk of TA2" );
- status = ref_tsk( &pk_rtsk, TA2_ID);
- directive_failed( status, "INIT - ref_tsk of TA2");
- fatal_directive_status( pk_rtsk.tskstat, TTS_SUS, "tskstat of TA2");
-
- status = ter_tsk( TA1_ID );
- directive_failed( status, "ter_tsk of TA1" );
- status = del_tsk( TA1_ID );
- directive_failed( status, "del_tsk of TA1" );
- status = ter_tsk( TA2_ID );
- directive_failed( status, "ter_tsk of TA2" );
- status = ter_tsk( TA3_ID );
- directive_failed( status, "ter_tsk of TA3" );
-
- pk_ctsk.itskpri = 1;
- pk_ctsk.task = Task_1;
- status = cre_tsk( TA1_ID, &pk_ctsk );
- directive_failed( status, "cre_tsk of TA1 at priority 1" );
-
- status = sta_tsk( TA1_ID, 0 );
- directive_failed( status, "sta_tsk of TA1" );
- status = sta_tsk( TA2_ID, 0 );
- directive_failed( status, "sta_tsk of TA2" );
- status = sta_tsk( TA3_ID, 0 );
- directive_failed( status, "sta_tsk of TA3" );
-
- exd_tsk();
- assert(0);
-}
-
-
-
-
-
-