OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [sp05/] [task1.c] - Diff between revs 30 and 173

Only display areas with differences | Details | Blame | View Log

Rev 30 Rev 173
/*  Task_1
/*  Task_1
 *
 *
 *  This routine serves as a test task.  It verifies that tasks can
 *  This routine serves as a test task.  It verifies that tasks can
 *  be suspended and resumed.
 *  be suspended and resumed.
 *
 *
 *  Input parameters:
 *  Input parameters:
 *    argument - task argument
 *    argument - task argument
 *
 *
 *  Output parameters:  NONE
 *  Output parameters:  NONE
 *
 *
 *  NOTE: The rtems_task_suspend() directives fail on the first iteration.
 *  NOTE: The rtems_task_suspend() directives fail on the first iteration.
 *
 *
 *  COPYRIGHT (c) 1989-1999.
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *  On-Line Applications Research Corporation (OAR).
 *
 *
 *  The license and distribution terms for this file may be
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *
 *  $Id: task1.c,v 1.2 2001-09-27 12:02:31 chris Exp $
 *  $Id: task1.c,v 1.2 2001-09-27 12:02:31 chris Exp $
 */
 */
 
 
#include "system.h"
#include "system.h"
 
 
rtems_task Task_1(
rtems_task Task_1(
  rtems_task_argument argument
  rtems_task_argument argument
)
)
{
{
  rtems_id          tid2;
  rtems_id          tid2;
  rtems_id          tid3;
  rtems_id          tid3;
  rtems_unsigned32  pass;
  rtems_unsigned32  pass;
  rtems_status_code status;
  rtems_status_code status;
 
 
  status = rtems_task_ident( Task_name[ 2 ], 1, &tid2 );
  status = rtems_task_ident( Task_name[ 2 ], 1, &tid2 );
  directive_failed( status, "rtems_task_ident of TA2" );
  directive_failed( status, "rtems_task_ident of TA2" );
 
 
  status = rtems_task_ident( Task_name[ 3 ], 1, &tid3 );
  status = rtems_task_ident( Task_name[ 3 ], 1, &tid3 );
  directive_failed( status, "rtems_task_ident of TA3" );
  directive_failed( status, "rtems_task_ident of TA3" );
 
 
  for ( pass=1 ; pass <= 3 ; pass++ ) {
  for ( pass=1 ; pass <= 3 ; pass++ ) {
 
 
    puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" );
    puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" );
    status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
    status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
    directive_failed( status, "rtems_task_wake_after of TA1" );
    directive_failed( status, "rtems_task_wake_after of TA1" );
 
 
    puts( "TA1 - rtems_task_suspend - suspend TA3" );
    puts( "TA1 - rtems_task_suspend - suspend TA3" );
    status = rtems_task_suspend( tid3 );
    status = rtems_task_suspend( tid3 );
    if ( pass == 1 ) {
    if ( pass == 1 ) {
      fatal_directive_status(
      fatal_directive_status(
         status,
         status,
         RTEMS_ALREADY_SUSPENDED,
         RTEMS_ALREADY_SUSPENDED,
         "rtems_task_suspend of TA3"
         "rtems_task_suspend of TA3"
      );
      );
    } else {
    } else {
      directive_failed( status, "rtems_task_suspend of TA3" );
      directive_failed( status, "rtems_task_suspend of TA3" );
    }
    }
 
 
    puts( "TA1 - rtems_task_resume - resume TA2" );
    puts( "TA1 - rtems_task_resume - resume TA2" );
    status = rtems_task_resume( tid2 );
    status = rtems_task_resume( tid2 );
    directive_failed( status, "rtems_task_resume of TA2" );
    directive_failed( status, "rtems_task_resume of TA2" );
 
 
    puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" );
    puts( "TA1 - rtems_task_wake_after - sleep 5 seconds" );
    status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
    status = rtems_task_wake_after( 5*TICKS_PER_SECOND );
    directive_failed( status, "rtems_task_wake_after" );
    directive_failed( status, "rtems_task_wake_after" );
 
 
    puts( "TA1 - rtems_task_suspend - suspend TA2" );
    puts( "TA1 - rtems_task_suspend - suspend TA2" );
    status = rtems_task_suspend( tid2 );
    status = rtems_task_suspend( tid2 );
    directive_failed( status, "rtems_task_suspend of TA2" );
    directive_failed( status, "rtems_task_suspend of TA2" );
 
 
    puts( "TA1 - rtems_task_resume - resume TA3" );
    puts( "TA1 - rtems_task_resume - resume TA3" );
    status = rtems_task_resume( tid3 );
    status = rtems_task_resume( tid3 );
    directive_failed( status, "rtems_task_resume" );
    directive_failed( status, "rtems_task_resume" );
  }
  }
 
 
  puts( "*** END OF TEST 5 ***" );
  puts( "*** END OF TEST 5 ***" );
  exit( 0 );
  exit( 0 );
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.