Skip to content
Snippets Groups Projects
Select Git revision
  • 36ec36fcb2ae00213f34657fb25815296d4d111c
  • master default
  • labcomm2006
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
16 results

labcomm_compat_vxworks.h

Blame
  • Forked from Anders Blomdell / LabComm
    313 commits behind the upstream repository.
    labcomm_compat_vxworks.h 493 B
    #ifndef _LABCOMM_COMPAT_VXWORKS_H_
    #define _LABCOMM_COMPAT_VXWORKS_H_
    
    #ifndef  __VXWORKS__
    #error "__VXWORKS__" not defined
    #endif
    
    #include <types/vxTypes.h>
    #include <selectLib.h>
    #include <types.h>
    #include <timers.h>
    #include <stdio.h>
    #include <private/stdioP.h>
    
    #ifdef __INT64_MAX__
    #undef INT64_MAX
    #define INT64_MAX __INT64_MAX__
    #endif
    
    #if (CPU == PPC603)
      #undef _LITTLE_ENDIAN
    #endif
    
    #if (CPU == PENTIUM4)
      #undef _BIG_ENDIAN
    #endif
    
    extern unsigned int cpuFrequency;
    
    #endif