This is Unofficial EPICS BASE Doxygen Site
osdWireConfig.h
Go to the documentation of this file.
1 /*
2  * Solaris version of
3  * osdWireConfig.h
4  *
5  * Author Jeffrey O. Hill
6  * johill@lanl.gov
7  */
8 
9 #ifndef osdWireConfig_h
10 #define osdWireConfig_h
11 
12 #include <sys/isa_defs.h>
13 
14 #if defined ( _LITTLE_ENDIAN )
15 # define EPICS_BYTE_ORDER EPICS_ENDIAN_LITTLE
16 #elif defined ( _BIG_ENDIAN )
17 # define EPICS_BYTE_ORDER EPICS_ENDIAN_BIG
18 #else
19 # error EPICS hasnt been ported to byte order specified by <sys/isa_defs.h> on Solaris
20 #endif
21 
22 /* for now, assume that Solaris doesnt run on weird arch like ARM NWFP */
23 #define EPICS_FLOAT_WORD_ORDER EPICS_BYTE_ORDER
24 
25 #endif /* ifdef osdWireConfig_h */
26