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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [sptests/] [sp22/] [prtime.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  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-1999.
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: prtime.c,v 1.2 2001-09-27 12:02:36 chris Exp $
17
 */
18
 
19
#include "system.h"
20
 
21
void 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
}

powered by: WebSVN 2.1.0

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