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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [isoinfra/] [v2_0/] [include/] [time.h] - Blame information for rev 223

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

Line No. Rev Author Line
1 27 unneback
#ifndef CYGONCE_ISO_TIME_H
2
#define CYGONCE_ISO_TIME_H
3
/*========================================================================
4
//
5
//      time.h
6
//
7
//      ISO time functions
8
//
9
//========================================================================
10
//####ECOSGPLCOPYRIGHTBEGIN####
11
// -------------------------------------------
12
// This file is part of eCos, the Embedded Configurable Operating System.
13
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
14
//
15
// eCos is free software; you can redistribute it and/or modify it under
16
// the terms of the GNU General Public License as published by the Free
17
// Software Foundation; either version 2 or (at your option) any later version.
18
//
19
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
20
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
21
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
22
// for more details.
23
//
24
// You should have received a copy of the GNU General Public License along
25
// with eCos; if not, write to the Free Software Foundation, Inc.,
26
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
27
//
28
// As a special exception, if other files instantiate templates or use macros
29
// or inline functions from this file, or you compile this file and link it
30
// with other works to produce a work based on this file, this file does not
31
// by itself cause the resulting work to be covered by the GNU General Public
32
// License. However the source code for this file must still be made available
33
// in accordance with section (3) of the GNU General Public License.
34
//
35
// This exception does not invalidate any other reasons why a work based on
36
// this file might be covered by the GNU General Public License.
37
//
38
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
39
// at http://sources.redhat.com/ecos/ecos-license/
40
// -------------------------------------------
41
//####ECOSGPLCOPYRIGHTEND####
42
//========================================================================
43
//#####DESCRIPTIONBEGIN####
44
//
45
// Author(s):     jlarmour
46
// Contributors:
47
// Date:          2000-04-14
48
// Purpose:       This file provides the time macros, types and functions
49
//                required by ISO C and POSIX 1003.1.
50
// Description:   The real contents of this file get set from the
51
//                configuration (set by the implementation)
52
// Usage:         #include <time.h>
53
//
54
//####DESCRIPTIONEND####
55
//
56
//======================================================================
57
*/
58
 
59
/* CONFIGURATION */
60
 
61
#include <pkgconf/isoinfra.h>          /* Configuration header */
62
 
63
/* INCLUDES */
64
 
65
/* This is the "standard" way to get NULL and size_t from stddef.h,
66
 * which is the canonical location of the definitions.
67
 */
68
#define __need_NULL
69
#define __need_size_t
70
#include <stddef.h>
71
 
72
#ifdef CYGBLD_ISO_TIME_T_HEADER
73
# include CYGBLD_ISO_TIME_T_HEADER
74
#else
75
 
76
/* Define time_t as per ISO C para 7.12.1
77
 * It is conventionally given the meaning of seconds since the
78
 * Epoch (00:00:00 GMT, 1970-01-01), but don't rely on this - always use
79
 * the type opaquely
80
 */
81
typedef int time_t;
82
# define __time_t_defined
83
 
84
#endif
85
 
86
#ifdef CYGBLD_ISO_CLOCK_T_HEADER
87
# include CYGBLD_ISO_CLOCK_T_HEADER
88
#else
89
 
90
/* What to divide clock_t by to get seconds (para 7.12.1)
91
 * According to SUS3, CLOCKS_PER_SEC must be 1 million on all
92
 * XSI-conformant systems.
93
 */
94
#  define CLOCKS_PER_SEC 1000000
95
 
96
/* Define clock_t as per ISO C para 7.12.1 */
97
 
98
typedef long clock_t;
99
#  define __clock_t_defined
100
#endif
101
 
102
#ifdef CYGBLD_ISO_STRUCTTIMEVAL_HEADER
103
# include CYGBLD_ISO_STRUCTTIMEVAL_HEADER
104
#else
105
# ifndef _POSIX_SOURCE
106
 
107
/*
108
 * Structure returned by gettimeofday(2),
109
 * and used in other calls such as select(2).
110
 */
111
struct timeval {
112
        long    tv_sec;         /* seconds */
113
        long    tv_usec;        /* and microseconds */
114
};
115
 
116
# endif /* _POSIX_SOURCE */
117
#endif
118
 
119
 
120
#ifdef CYGINT_ISO_POSIX_CLOCK_TYPES
121
# include CYGBLD_ISO_POSIX_CLOCK_TYPES_HEADER
122
#else
123
 
124
/* Provide a default struct timespec. */
125
 
126
struct timespec
127
{
128
    time_t      tv_sec;
129
    long        tv_nsec;
130
};
131
#endif
132
 
133
#ifdef CYGINT_ISO_POSIX_TIMER_TYPES
134
# include CYGBLD_ISO_POSIX_TIMER_TYPES_HEADER
135
#else
136
 
137
/* Provide a default struct itimerspec. */
138
struct itimerspec
139
{
140
    struct timespec     it_interval;
141
    struct timespec     it_value;
142
};
143
 
144
#endif
145
 
146
#ifdef CYGINT_ISO_C_TIME_TYPES
147
# include CYGBLD_ISO_C_TIME_TYPES_HEADER
148
#endif
149
 
150
#ifdef CYGINT_ISO_POSIX_CLOCKS
151
# include CYGBLD_ISO_POSIX_CLOCKS_HEADER
152
#endif
153
 
154
#ifdef CYGINT_ISO_POSIX_TIMERS
155
# include CYGBLD_ISO_POSIX_TIMERS_HEADER
156
#endif
157
 
158
#ifdef CYGINT_ISO_C_CLOCK_FUNCS
159
# include CYGBLD_ISO_C_CLOCK_FUNCS_HEADER
160
#endif
161
 
162
#ifdef CYGINT_ISO_TZSET
163
# include CYGBLD_ISO_TZSET_HEADER
164
#endif
165
 
166
#endif /* CYGONCE_ISO_TIME_H multiple inclusion protection */
167
 
168
/* EOF time.h */

powered by: WebSVN 2.1.0

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