source: rtems/testsuites/samples/ticker/tasks.c @ 4c84d7b

4.104.114.84.95
Last change on this file since 4c84d7b was 4c84d7b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/30/04 at 11:12:01

2004-03-30 Ralf Corsepius <ralf_corsepius@…>

  • fileio/init.c, fileio/system.h, ticker/system.h, ticker/tasks.c, unlimited/init.c, unlimited/test1.c, unlimited/test2.c, unlimited/test3.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  Test_task
2 *
3 *  This routine serves as a test task.  It verifies the basic task
4 *  switching capabilities of the executive.
5 *
6 *  Input parameters:  NONE
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21#include <stdio.h>
22#include <stdlib.h>
23
24rtems_task Test_task(
25  rtems_task_argument unused
26)
27{
28  rtems_id          tid;
29  rtems_time_of_day time;
30  uint32_t    task_index;
31  rtems_status_code status;
32
33  status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid );
34  task_index = task_number( tid );
35  for ( ; ; ) {
36    status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
37    if ( time.second >= 35 ) {
38      puts( "*** END OF CLOCK TICK TEST ***" );
39      exit( 0 );
40    }
41    put_name( Task_name[ task_index ], FALSE );
42    print_time( " - rtems_clock_get - ", &time, "\n" );
43    status = rtems_task_wake_after( task_index * 5 * get_ticks_per_second() );
44  }
45}
Note: See TracBrowser for help on using the repository browser.