Licensing Information
Open Source Used In Cisco Nexus 9000 Series 7.0(3)I5(1)
4116
# define TARGET_UNIX 0
# if defined(_MSC_VER)
# define TARGET_MSVC 1
# else
# define TARGET_MSVC 0
# endif
# define TARGET_BSD 0
# define TARGET_SYMBIAN 0
#elif defined(_WRS_KERNEL)
# define TARGET_WINDOWS 0
# define TARGET_VXWORKS 1
# define TARGET_UNIX 0
# define TARGET_MSVC 0
# define TARGET_BSD 0
# define TARGET_SYMBIAN 0
#elif defined(__SYMBIAN32__)
# define TARGET_WINDOWS 0
# define TARGET_VXWORKS 0
# define TARGET_UNIX 0
# define TARGET_MSVC 0
# define TARGET_BSD 0
# define TARGET_SYMBIAN 1
#else
# define TARGET_WINDOWS 0
# define TARGET_VXWORKS 0
# define TARGET_UNIX 1
# define TARGET_MSVC 0
# if defined(__FreeBSD__) || defined(__NetBSD__)
# define TARGET_BSD 1
# else
# define TARGET_BSD 0
# endif
# define TARGET_SYMBIAN 0
#endif
#if !defined(SERVICE_Locator)
#define SERVICE_Locator (TARGET_UNIX || TARGET_VXWORKS || TARGET_WINDOWS ||
TARGET_SYMBIAN)
#endif
#if !defined(SERVICE_RunControl)
#define SERVICE_RunControl (TARGET_UNIX || TARGET_VXWORKS || TARGET_WINDOWS)
#endif
#if !defined(SERVICE_Breakpoints)
#define SERVICE_Breakpoints (TARGET_UNIX || TARGET_VXWORKS || TARGET_WINDOWS)
#endif
#if !defined(SERVICE_Memory)
#define SERVICE_Memory (TARGET_UNIX || TARGET_VXWORKS || TARGET_WINDOWS)
#endif










