This is Unofficial EPICS BASE Doxygen Site
epicsInterrupt.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2009 UChicago Argonne LLC, 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 is distributed subject to a Software License Agreement found
7 * in file LICENSE that is included with this distribution.
8 \*************************************************************************/
9 #ifndef epicsInterrupth
10 #define epicsInterrupth
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 #include "libComAPI.h"
17 
18 LIBCOM_API int epicsInterruptLock(void);
19 LIBCOM_API void epicsInterruptUnlock(int key);
20 LIBCOM_API int epicsInterruptIsInterruptContext(void);
21 LIBCOM_API void epicsInterruptContextMessage(const char *message);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #include "osdInterrupt.h"
28 
29 #endif /* epicsInterrupth */
LIBCOM_API void epicsInterruptUnlock(int key)
Definition: osdInterrupt.c:41
LIBCOM_API int epicsInterruptLock(void)
Definition: osdInterrupt.c:34
LIBCOM_API int epicsInterruptIsInterruptContext(void)
Definition: osdInterrupt.c:48
LIBCOM_API void epicsInterruptContextMessage(const char *message)
Definition: osdInterrupt.c:53