This is Unofficial EPICS BASE Doxygen Site
osdTime.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Chicago, as Operator of Argonne
3 * National Laboratory.
4 * Copyright (c) 2002 The Regents of the University of California, as
5 * Operator of Los Alamos National Laboratory.
6 * EPICS BASE Versions 3.13.7
7 * and higher are distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 /* Following needed for struct timeval */
11 #include <sys/times.h>
12 
13 #ifndef osdTimeh
14 #define osdTimeh
15 
16 #include <tickLib.h>
17 #include <sysLib.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
23 void osdNTPInit(void);
24 int osdNTPGet(struct timespec *);
25 void osdNTPReport(void);
26 
27 #define osdTickRateGet sysClkRateGet
28 #define osdTickGet tickGet
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 #endif /* ifndef osdTimeh */
void osdNTPReport(void)
Definition: osdTime.cpp:101
void osdNTPInit(void)
Definition: osdTime.cpp:81
int osdNTPGet(struct timespec *)
Definition: osdTime.cpp:45
Defined by POSIX Real Time.
Definition: osdTime.h:21