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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [tests/] [itrontests/] [itrontime01/] [init.c] - Blame information for rev 385

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  Init
2
 *
3
 *  This routine is the initialization task for this test program.
4
 *  It is called from init_exec and has the responsibility for creating
5
 *  and starting the tasks that make up the test.  If the time of day
6
 *  clock is required for the test, it should also be set to a known
7
 *  value by this function.
8
 *
9
 *  Input parameters:  NONE
10
 *
11
 *  Output parameters:  NONE
12
 *
13
 *  COPYRIGHT (c) 1989-1999.
14
 *  On-Line Applications Research Corporation (OAR).
15
 *
16
 *  The license and distribution terms for this file may be
17
 *  found in the file LICENSE in this distribution or at
18
 *  http://www.OARcorp.com/rtems/license.html.
19
 *
20
 *  $Id: init.c,v 1.2 2001-09-27 12:02:11 chris Exp $
21
 */
22
 
23
#define TEST_INIT
24
#include "system.h"
25
#include <stdio.h>
26
#include <time.h>
27
 
28
/*
29
 * get the current time in second since epoch (1970), change it since 1985,
30
 * compute the time in millisecond
31
 *
32
 */
33
 
34
int time_sec_epoch( void ) {
35
 
36
int s_time,t_time,r_time;
37
long m_sec;
38
 
39
t_time = time(NULL);
40
s_time = (1985-1970)*365*24*60*60;
41
r_time = t_time - s_time;
42
m_sec = r_time*1000;
43
 
44
printf( "Time from 1970: %d\n", t_time );
45
printf( "Time between 1970 and 1985: %d\n", s_time );
46
printf( "Time from 1985: %d\n", r_time );
47
printf("milliseconds: %ld\n",m_sec);
48
 
49
return 0;
50
}
51
 
52
 
53
 
54
void ITRON_Init( void )
55
{
56
  printf( "\n\n*** ITRON TIME TEST 01 ***\n" );
57
  printf( "doesn't test anything yet\n" );
58
  printf( "*** END OF ITRON TIME TEST 01 ***\n" );
59
  exit( 0 );
60
}
61
 
62
 

powered by: WebSVN 2.1.0

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