This is Unofficial EPICS BASE Doxygen Site
osiClockTime.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2008 UChicago Argonne LLC, as Operator of Argonne
3 * National Laboratory.
4 * EPICS BASE is distributed subject to a Software License Agreement found
5 * in file LICENSE that is included with this distribution.
6 \*************************************************************************/
7 
8 #ifndef INC_osiClockTime_H
9 #define INC_osiClockTime_H
10 
11 #define CLOCKTIME_NOSYNC 0
12 #define CLOCKTIME_SYNC 1
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 void ClockTime_Init(int synchronize);
19 void ClockTime_Shutdown(void *dummy);
20 int ClockTime_Report(int level);
21 
22 #if defined(vxWorks) || defined(__rtems__)
23 typedef void (* CLOCKTIME_SYNCHOOK)(int synchronized);
24 
25 extern CLOCKTIME_SYNCHOOK ClockTime_syncHook;
26 #endif
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 #endif
void ClockTime_Init(int synchronize)
int ClockTime_Report(int level)
Definition: osiClockTime.c:243
epics::pvData::PVStructurePtr dummy
Definition: pvAccess.cpp:72
void ClockTime_Shutdown(void *dummy)
int synchronize
Definition: osiClockTime.c:30