source: rtems/testsuites/sptests/sp31/prtime.c @ 3aa4c2e0

4.104.114.84.95
Last change on this file since 3aa4c2e0 was de569fe, checked in by Joel Sherrill <joel.sherrill@…>, on 01/16/02 at 22:13:29

2001-01-16 Joel Sherrill <joel@…>

  • Added tests for task-based timers. This included the new tests sp30 and sp31.
  • Makefile.am, configure.ac: Modified to reflect new tests and files.
  • sp09/screen14.c, sp09/sp09.scn: Modified to add error checks for task-based timer services.
  • sp30/.cvsignore, sp30/Makefile.am, sp30/init.c, sp30/resume.c, sp30/sp30.doc, sp30/sp30.scn, sp30/system.h, sp30/task1.c, sp31/.cvsignore, sp31/Makefile.am, sp31/delay.c, sp31/init.c, sp31/prtime.c, sp31/sp31.doc, sp31/sp31.scn, sp31/system.h, sp31/task1.c: New files.
  • Property mode set to 100644
File size: 724 bytes
Line 
1/*  Print_time
2 *
3 *  This routine prints the name of Task_1 and the current time of day.
4 *
5 *  Input parameters:  NONE
6 *
7 *  Output parameters:  NONE
8 *
9 *  COPYRIGHT (c) 1989-2002.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.OARcorp.com/rtems/license.html.
15 *
16 *  $Id$
17 */
18
19#include "system.h"
20
21void Print_time( void )
22{
23  rtems_time_of_day time;
24  rtems_status_code status;
25
26  status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &time );
27  directive_failed( status, "rtems_clock_get" );
28
29  put_name( Task_name[ 1 ], FALSE );
30  print_time( "- rtems_clock_get - ", &time, "\n" );
31}
Note: See TracBrowser for help on using the repository browser.