EPICS Base  7.0.6.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
caDiagnostics.h
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 * SPDX-License-Identifier: EPICS
7 * EPICS BASE is distributed subject to a Software License Agreement found
8 * in file LICENSE that is included with this distribution.
9 \*************************************************************************/
10 
11 #ifndef INC_caDiagnostics_H
12 #define INC_caDiagnostics_H
13 
14 #include "cadef.h"
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 enum appendNumberFlag {appendNumber, dontAppendNumber};
21 int catime ( const char *channelName, unsigned channelCount, enum appendNumberFlag appNF );
22 
23 int acctst ( const char *pname, unsigned logggingInterestLevel,
24  unsigned channelCount, unsigned repetitionCount,
25  enum ca_preemptive_callback_select select );
26 
27 #define CATIME_OK 0
28 #define CATIME_ERROR -1
29 
30 #ifdef __cplusplus
31 }
32 #endif
33 
34 void caConnTest ( const char *pNameIn, unsigned channelCountIn, double delayIn );
35 
36 #endif /* ifndef INC_caDiagnostics_H */
37 
38